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;
 }
 // GET: Sales/Client
 public ClientController(IClientManager iClientManager, ICommonManager iCommonManager, IRegionManager iRegionManager, ITerritoryGateway iTerritoryGateway, IDistrictManager iDistrictManager, IBranchManager iBranchManager, IAccountsManager iAccountsManager)
 {
     _iClientManager    = iClientManager;
     _iCommonManager    = iCommonManager;
     _iRegionManager    = iRegionManager;
     _iTerritoryGateway = iTerritoryGateway;
     _iDistrictManager  = iDistrictManager;
     _iBranchManager    = iBranchManager;
     _iAccountsManager  = iAccountsManager;
 }
 public ClientController(IClientManager iClientManager, ICommonManager iCommonManager, IRegionManager iRegionManager, ITerritoryManager iTerritoryManager, IDistrictManager iDistrictManager, IUpazillaGateway iUpazillaGateway, IPostOfficeGateway iPostOfficeGateway)
 {
     _iClientManager     = iClientManager;
     _iCommonManager     = iCommonManager;
     _iRegionManager     = iRegionManager;
     _iTerritoryManager  = iTerritoryManager;
     _iDistrictManager   = iDistrictManager;
     _iUpazillaGateway   = iUpazillaGateway;
     _iPostOfficeGateway = iPostOfficeGateway;
 }
 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;
 }
Beispiel #6
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;
 }
Beispiel #7
0
 public CommonController(IBranchManager iBranchManager, IClientManager iClientManager, IOrderManager iOrderManager, IDepartmentManager iDepartmentManager, IInventoryManager iInventoryManager, ICommonManager iCommonManager, IDiscountManager iDiscountManager, IRegionManager iRegionManager, ITerritoryManager iTerritoryManager, IProductManager iProductManager, IInvoiceManager iInvoiceManager, IUpazillaGateway iUpazillaGateway, IDistrictManager iDistrictManager)
 {
     _iBranchManager     = iBranchManager;
     _iClientManager     = iClientManager;
     _iOrderManager      = iOrderManager;
     _idepartmentManager = iDepartmentManager;
     _iInventoryManager  = iInventoryManager;
     _iCommonManager     = iCommonManager;
     _iDiscountManager   = iDiscountManager;
     _iRegionManager     = iRegionManager;
     _iProductManager    = iProductManager;
     _iTerritoryManager  = iTerritoryManager;
     _iUpazillaGateway   = iUpazillaGateway;
     _iInvoiceManager    = iInvoiceManager;
     _iDistrictManager   = iDistrictManager;
 }
Beispiel #8
0
        public DriverExController(
			IFeedbackManager feedbackManager,
			IOrderManagerEx orderManager,
			IDriverExManager driverManager,
			IDistrictManager districtManager,
			ICarManager carManager,
			IWorkerStatusManager workerStatusManager,
			IUserManager userManager)
        {
            this.orderManager = orderManager;
            this.driverManager = driverManager;
            this.districtManager = districtManager;
            this.feedbackManager = feedbackManager;
            this.carManager = carManager;
            this.workerStatusManager = workerStatusManager;
            this.userManager = userManager;
        }
Beispiel #9
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;
        }
Beispiel #10
0
 public DistrictController(IDistrictManager district, IDivisionManager division)
 {
     this._districtManager = district;
     this._divisionManager = division;
 }
 public ThanaController(IThanaManager thana, IDistrictManager district)
 {
     this._thanaManager    = thana;
     this._districtManager = district;
 }
Beispiel #12
0
 public OrderExController(IOrderManagerEx orderManager, IDistrictManager districtManager)
 {
     this.orderManager = orderManager;
     this.districtManager = districtManager;
 }
 public ReportChartsController(IUserManager userManager, IDistrictManager districtManager)
 {
     this.userManager = userManager;
     this.districtManager = districtManager;
 }
 public DistrictController()
 {
     _aManager = new DistrictManager();
 }