/// <summary>
 /// Class Constructor
 /// </summary>
 /// <param name="view">Instance of the CustomerInfo View Interface</param>
 public CustomerInfoPresenter(ICustomerInfoView view)
 {
     this._view = view;
     this._customerModel = new CustomerModel();
     this._divisionModel = new DivisionModel();
     this._employeeModel = new EmployeeModel();
     this._jobModel = new JobModel();
 }
Ejemplo n.º 2
0
 public UpdateCustomerInfoPresenter(ICustomerInfoView view)
 {
     _ItsView = view;
     AttachViewEvent();
 }
 public CustomerInfoPresenter(ICustomerInfoView view,JobModel jobModel)
 {
     this._view = view;
     this._jobModel = jobModel;
 }
 public AddCustomerInfoPresenter(ICustomerInfoView itsView)
 {
     _ItsView = itsView;
     AttachViewEvent();
 }