public EmployeeController(IEmployeeService employeeService, IBillMasterService billMasterService, IEntryMasterService entryMasterService, IUserLogFileService userLogFileService)
 {
     this.employeeService    = employeeService;
     this.billMasterService  = billMasterService;
     this.entryMasterService = entryMasterService;
     this.userLogFileService = userLogFileService;
 }
 public CustomerController(ICustomersService customerService, IBillMasterService billMasterService, IEntryMasterService entryMasterService, IUserLogFileService userLogFileService)
 {
     this.customerService    = customerService;
     this.entryMasterService = entryMasterService;
     this.billMasterService  = billMasterService;
     this.userLogFileService = userLogFileService;
 }
 public CurrencyController(ICurrencyService currencyService, IBillMasterService billMasterService, IEntryMasterService entryMasterService, IBankService bankService, IUserLogFileService userLogFileService)
 {
     this.currencyService    = currencyService;
     this.billMasterService  = billMasterService;
     this.entryMasterService = entryMasterService;
     this.bankService        = bankService;
     this.userLogFileService = userLogFileService;
 }
Esempio n. 4
0
 public EntryMasterController(IEntryMasterService entryMasterService, IUserLogFileService userLogFileService)
 {
     this.entryMasterService = entryMasterService;
     this.userLogFileService = userLogFileService;
 }