Example #1
0
 public EmployeeController(IBranchManager iBranchManager, IDepartmentManager iDepartmentManager, IDesignationManager iDesignationManager, IEmployeeManager iEmployeeManager, IEmployeeTypeManager iEmployeeTypeManager)
 {
     _iBranchManager       = iBranchManager;
     _iDepartmentManager   = iDepartmentManager;
     _iDesignationManager  = iDesignationManager;
     _iEmployeeManager     = iEmployeeManager;
     _iEmployeeTypeManager = iEmployeeTypeManager;
 }
 public EmployeeController(IEmployeeManager employee, IDepartmentManager department, IDesignationManager designation,
                           IDivisionManager division, IDistrictManager district, IThanaManager thana)
 {
     this._employeeManager    = employee;
     this._departmentManager  = department;
     this._designationManager = designation;
     this._divisionManager    = division;
     this._districtManager    = district;
     this._thanaManager       = thana;
 }
 public EmployeesController(IEmployeeManager employeeManager, IDepartmentManager departmentManager,
                            IDesignationManager designationManager, IOrganizationManager organizationManager, IEmployeeTypeManager employeeTypeManager,
                            IDivisionManager divisionManager, IDistrictManager districtManager, IUpazilaManager upazilaManager)
 {
     this._employeeManager     = employeeManager;
     this._departmentManager   = departmentManager;
     this._designationManager  = designationManager;
     this._organizationManager = organizationManager;
     this._employeeTypeManager = employeeTypeManager;
     this._divisionManager     = divisionManager;
     this._districtManager     = districtManager;
     this._upazilaManager      = upazilaManager;
 }
Example #4
0
 public ManagerController(IRequsitionManager _requsition, IEmployeeManager employee, IManagerManager manager,
                          IVehicleManager vehicle, IVehicleTypeManager vehicleType, IDepartmentManager department, IDesignationManager designation,
                          IDivisionManager division, IDistrictManager district, IThanaManager thana)
 {
     this._employeeManager    = employee;
     this._requsitionManager  = _requsition;
     this.managerManager      = manager;
     this.vehicleManager      = vehicle;
     this.vehicleTypeManager  = vehicleType;
     this._departmentManager  = department;
     this._designationManager = designation;
     this._divisionManager    = division;
     this._districtManager    = district;
     this._thanaManager       = thana;
 }
 public QueueController(INotificationManager notificationManager, IRequisitionManager requisitionManager, IRequisitionStatusManager requisitionStatusManager,
                        IEmployeeManager employeeManager, IVehicleManager vehicleManager, IVehicleTypeManager vehicleTypeManager, IContactManager contactManager,
                        IOrganizationManager organizationManager, IDepartmentManager departmentManager, IDesignationManager designationManager, IEmployeeTypeManager employeeTypeManager)
 {
     this._notificationManager      = notificationManager;
     this._requisitionManager       = requisitionManager;
     this._requisitionStatusManager = requisitionStatusManager;
     this._employeeManager          = employeeManager;
     this._vehicleManager           = vehicleManager;
     this._vehicleTypeManager       = vehicleTypeManager;
     this._contactManager           = contactManager;
     this._organizationManager      = organizationManager;
     this._departmentManager        = departmentManager;
     this._designationManager       = designationManager;
     this._employeeTypeManager      = employeeTypeManager;
 }
Example #6
0
        public DriverController(IEmployeeManager employee, IDepartmentManager department,
                                IDesignationManager designation,
                                IDivisionManager division, IDistrictManager district, IThanaManager thana, IRequsitionManager requisition,
                                IVehicleManager vehicle, IDriverStatusManager driverStatus, IVehicleStatusManager vehicleStatus, ICommentManager comment)
        {
            this._employeeManager    = employee;
            this._departmentManager  = department;
            this._designationManager = designation;
            this._divisionManager    = division;
            this._districtManager    = district;
            this._thanaManager       = thana;
            this._requisitionManager = requisition;

            this.vehicleManager       = vehicle;
            this.driverStatusManager  = driverStatus;
            this.vehicleStatusManager = vehicleStatus;

            this.commentManager = comment;
        }
 public DesignationController()
 {
     _designationManager = new DesignationManager();
 }
 public DesignationsController(IDesignationManager manager)
 {
     this._designationManager = manager;
 }
Example #9
0
 public DesignationController(IDesignationManager manager, IDepartmentManager departmenManager)
 {
     this._designationManager = manager;
     this._departmenManager   = departmenManager;
 }
Example #10
0
 public EmployeeController()
 {
     _employeeManager    = new EmployeeManager();
     _designationManager = new DesignationManager();
     _departmentManager  = new DepartmentManager();
 }
Example #11
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EmployeeController"/> class.
 /// </summary>
 /// <param name="employeeManager">
 /// The employee manager.
 /// </param>
 /// <param name="designationManager">
 /// The designation manager.
 /// </param>
 public EmployeeController(IEmployeeManager employeeManager, IDesignationManager designationManager)
 {
     this.employeeManager = employeeManager;
     this.designationManager = designationManager;
 }
Example #12
0
 public DesignationController(IDepartmentManager iDepartmentManager, IDesignationManager iDesignationManager)
 {
     _iDepartmentManager  = iDepartmentManager;
     _iDesignationManager = iDesignationManager;
 }
 public DesignationsController(IDesignationManager designationManager)
 {
     _designationManager = designationManager;
 }
 public DesignationController(IDesignationManager manager, IOrganaizationManager organaizationManager)
 {
     this._designationManager   = manager;
     this._organaizationManager = organaizationManager;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="EmployeeController"/> class.
 /// </summary>
 /// <param name="employeeManager">
 /// The employee manager.
 /// </param>
 /// <param name="designationManager">
 /// The designation manager.
 /// </param>
 public EmployeeController(IEmployeeManager employeeManager, IDesignationManager designationManager)
 {
     this.employeeManager    = employeeManager;
     this.designationManager = designationManager;
 }