/// <summary>Initializes a new instance of the <see cref="ResourcesController" /> class.</summary>
 public ResourcesController()
 {
     this.employeeIt2Manager     = new EmployeeIt2Manager();
     this.officeIt2Manager       = new OfficeIt2Manager();
     this.patientIt2Manager      = new PatientIt2Manager();
     this.logiIntegrationManager = new LogiIntegrationManager();
 }
Exemple #2
0
        /// <summary>
        ///     Initializes a new instance of the <see cref="LoginController" /> class.
        /// </summary>
        public LoginController()
        {
            try
            {
                this.it2Business = new DailyClosingIt2Manager();
            }
            catch (Exception e)
            {
                Logger.Error(e);
            }

            this.officeIt2Manager = new OfficeIt2Manager();
        }
Exemple #3
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="CompanyInformationController" /> class.
 /// </summary>
 public CompanyInformationController()
 {
     this.officeIt2Manager = new OfficeIt2Manager();
     this.pmiManager       = new PmiIt2IntegrationManager();
 }