コード例 #1
0
 public BillProfitController(ICustomersService customerService, ICompanyStoresService companyStoreService, IEmployeeService employeeService, ICostCentersService costCenterService)
 {
     this.customerService     = customerService;
     this.companyStoreService = companyStoreService;
     this.employeeService     = employeeService;
     this.costCenterService   = costCenterService;
 }
コード例 #2
0
 public CompanyBranchesController(ICompanyBranchesService _companyBranchesService, IUserPriviligeBranchesService _userPriviligeBranService, IBillMasterService billMasterService, IDepartmentService departmentService, ICompanyStoresService companyStoresService, ICustomersService customersService, IUserLogFileService userLogFileService)
 {
     this.companyBranchesService   = _companyBranchesService;
     this.userPriviligeBranService = _userPriviligeBranService;
     this.billMasterService        = billMasterService;
     this.departmentService        = departmentService;
     this.companyStoresService     = companyStoresService;
     this.customersService         = customersService;
     this.userLogFileService       = userLogFileService;
 }
コード例 #3
0
 public AddressController(IAddressService addressService, IEmployeeService employeeService,
                          ICompanyStoresService companyStoresService, ICustomersService customersService,
                          IBankService bankService, ICompanyBranchesService companyBranchesService, IUserLogFileService userLogFileService)
 {
     this.addressService         = addressService;
     this.employeeService        = employeeService;
     this.companyStoresService   = companyStoresService;
     this.customersService       = customersService;
     this.bankService            = bankService;
     this.companyBranchesService = companyBranchesService;
     this.userLogFileService     = userLogFileService;
 }
コード例 #4
0
 public StoresGuidController(ICompanyStoresService storesService)
 {
     this.storesService = storesService;
 }
コード例 #5
0
 public CompanyStoresController(ICompanyStoresService companyStoresService, IBillMasterService billMasterService, IUserLogFileService userLogFileService)
 {
     this.companyStoresService = companyStoresService;
     this.billMasterService    = billMasterService;
     this.userLogFileService   = userLogFileService;
 }