public EmployeeController(IEmployeeService employeeService, IBillMasterService billMasterService, IEntryMasterService entryMasterService, IUserLogFileService userLogFileService)
 {
     this.employeeService    = employeeService;
     this.billMasterService  = billMasterService;
     this.entryMasterService = entryMasterService;
     this.userLogFileService = userLogFileService;
 }
 public CostCentersController(ICostCentersService costCentersService, IBillMasterService billMasterService, IEntryDetailsService entryDetailsService, IUserLogFileService _userLogFileService)
 {
     this.costCentersService  = costCentersService;
     this.billMasterService   = billMasterService;
     this.entryDetailsService = entryDetailsService;
     this.userLogFileService  = _userLogFileService;
 }
 public itemsController(IItemsService itemsService, IUserService userService, IBillMasterService billMasterService, IUserLogFileService userLogFileService)
 {
     this.itemsService       = itemsService;
     this.userService        = userService;
     this.billMasterService  = billMasterService;
     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;
 }
 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;
 }
Exemple #7
0
 public BillMasterController(IBillMasterService billMasterService, ILogger <BillMasterController> logger)
 {
     _billMasterService = billMasterService;
     _logger            = logger;
 }
Exemple #8
0
 public BillMasterController(IBillMasterService billMasterService, IUserLogFileService userLogFileService)
 {
     this.billMasterService  = billMasterService;
     this.userLogFileService = userLogFileService;
 }
 public RptInvoiceMotionController(IBillMasterService billMasterService)
 {
     BillMasterService = billMasterService;
 }
 public CompanyStoresController(ICompanyStoresService companyStoresService, IBillMasterService billMasterService, IUserLogFileService userLogFileService)
 {
     this.companyStoresService = companyStoresService;
     this.billMasterService    = billMasterService;
     this.userLogFileService   = userLogFileService;
 }
 public TPayTypesController(ITPAY_TYPESService tPayTypesService, IBillMasterService billMasterService, IUserLogFileService userLogFileService)
 {
     this.tPayTypesService   = tPayTypesService;
     this.billMasterService  = billMasterService;
     this.userLogFileService = userLogFileService;
 }