/// <summary>
 /// Initializes a new instance of the <see cref="FrmEmployeeDetail"/> class.
 /// </summary>
 public FrmEmployeeDetail()
 {
     InitializeComponent();
     GlobalVariable.EmployeeIDDetailForm = "";
     _accountingObjectPresenter          = new AccountingObjectPresenter(this);
     _employeeTypesPresenter             = new EmployeeTypesPresenter(this);
     _departmentsPresenter = new DepartmentsPresenter(this);
 }
Example #2
0
 public FrmEmployeeTypes()
 {
     InitializeComponent();
     _employeeTypesPresenter = new EmployeeTypesPresenter(this);
 }