/// <summary>
 /// Initializes a new instance of the <see cref="FrmXtraCompanyProfileDetail"/> class.
 /// </summary>
 public FrmXtraCompanyProfileDetail()
 {
     InitializeComponent();
     employeesBindingSource     = new BindingSource();
     CommonVariable             = new GlobalVariable();
     _companyProfilePresenter   = new CompanyProfilePresenter(this);
     _employeesPresenter        = new EmployeesPresenter(this);
     _employeeLeasingsPresenter = new EmployeeLeasingsPresenter(this);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UserControlEmployeeLeasingList" /> class.
 /// </summary>
 public UserControlEmployeeContractList()
 {
     InitializeComponent();
     _employeeLeasingsPresenter = new EmployeeLeasingsPresenter(this);
 }