public AddressesController(IAddressManager addressManager, IDivisionManager divisionManager, IUpazilaManager upazilaManager, IDistrictManager districtManager)
 {
     this._addressManager  = addressManager;
     this._divisionManager = divisionManager;
     this._upazilaManager  = upazilaManager;
     this._districtManager = districtManager;
 }
 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;
 }
Ejemplo n.º 3
0
 public MemberController(IDivisionManager division, IMemberManager manager, ITribeManager tribe,
                         IGroupManager group, ILogger <MemberController> logger, IHostingEnvironment env)
 {
     this._division = division;
     this._manager  = manager;
     this._group    = group;
     this._logger   = logger;
     this._env      = env;
     this._tribe    = tribe;
 }
 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;
 }
Ejemplo n.º 5
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;
 }
Ejemplo n.º 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;
        }
Ejemplo n.º 7
0
 public DistrictController(IDistrictManager district, IDivisionManager division)
 {
     this._districtManager = district;
     this._divisionManager = division;
 }
Ejemplo n.º 8
0
 public MemberManager(ILdapConnection connection, LdapConfig config, IDivisionManager divisionManager)
 {
     this._connection      = connection;
     this._config          = config;
     this._divisionManager = divisionManager;
 }
 public DivisionController(IDivisionManager manager, ILogger <DivisionController> logger, IHostingEnvironment env)
 {
     this._manager = manager;
     this._logger  = logger;
     this._env     = env;
 }
 public DivisionController(IDivisionManager manager)
 {
     this._divisionManager = manager;
 }