コード例 #1
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;
 }
コード例 #2
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;
 }
コード例 #3
0
 public UserController(IUserService userService, ICommonService commonService,
                       IUIDViewService uidViewService,
                       IUserPriviligeBranchesService userPriviligeBranService,
                       ICompanyBranchesService companyBranchesService,
                       IUserLogFileService _userLogFileService)
 {
     this.commonservice            = commonService;
     this.userService              = userService;
     this.uidViewService           = uidViewService;
     this.userPriviligeBranService = userPriviligeBranService;
     this.companyBranchesService   = companyBranchesService;
     this._userLogFileService      = _userLogFileService;
 }