project breakdown - wsaeedmlf/refactored-pbi GitHub Wiki

Welcome to the refactored-pbi wiki!

The Business Operation Framework (BOF) lets you run services on Microsoft Dynamics AX using the Windows Communication Foundation (WCF) framework. The BOF uses an MVC programming pattern.

What is a Model View Controller (MVC) Framework? MVC is a framework methodology that divides an application's implementation into three component roles: models, views, and controllers.

Model: The model manages the behavior and data of the application domain, responds to requests for information about its state (usually from the view), and responds to instructions to change state (usually from the controller). View: The view manages the display of information. Controller: The controller interprets the mouse and keyboard inputs from the user, informing the model and/or the view to change as appropriate.