public CostCentersController(ICostCentersService costCentersService, IBillMasterService billMasterService, IEntryDetailsService entryDetailsService, IUserLogFileService _userLogFileService)
 {
     this.costCentersService  = costCentersService;
     this.billMasterService   = billMasterService;
     this.entryDetailsService = entryDetailsService;
     this.userLogFileService  = _userLogFileService;
 }
Exemplo n.º 2
0
 public BillProfitController(ICustomersService customerService, ICompanyStoresService companyStoreService, IEmployeeService employeeService, ICostCentersService costCenterService)
 {
     this.customerService     = customerService;
     this.companyStoreService = companyStoreService;
     this.employeeService     = employeeService;
     this.costCenterService   = costCenterService;
 }