Does the Total Package also support Microsoft MVC (Model View Control)?

Yes, the 'Total Package' does indeed support Microsoft MVC (Model View Control).

Model-view-controller (or MVC) is a design pattern that divides the design of complex applications into three units with different responsibilities: data model (model), data presentation (view) and application logic (controller). Separating these responsibilities promotes code readability and reusability. It also makes sure that, for example, changes in the user interface do not directly affect the data model and vice versa.