public BatchOutPutService(IBatchOutPutDataService dataService, IUserService userService, ISupplyDataService supplyDataService,
                           IStockService stockService)
 {
     this._dataService       = dataService;
     this._userService       = userService;
     this._supplyDataService = supplyDataService;
     this._stockService      = stockService;
 }
 public SupplyService(ISupplyDataService dataService, IUserService userService, IAccountTransactionActivityService accountTransactionActivityService,
                      ICreditorService creditorService)
 {
     this._dataService = dataService;
     this._userService = userService;
     this._accountTransactionActivityService = accountTransactionActivityService;
     this._creditorService = creditorService;
 }
 public BatchService(IBatchDataService dataService, IUserService userService, ISupplyDataService supplyDataService,
                     IFactoryExpenseService factoryExpenseService, ILabourCostService labourCostService,
                     IMachineRepairService machineRepairService, IOtherExpenseService otherExpenseService,
                     IBatchOutPutService batchOutPutService, ISupplyService supplyService)
 {
     this._dataService           = dataService;
     this._userService           = userService;
     this._supplyDataService     = supplyDataService;
     this._factoryExpenseService = factoryExpenseService;
     this._labourCostService     = labourCostService;
     this._machineRepairService  = machineRepairService;
     this._otherExpenseService   = otherExpenseService;
     this._batchOutPutService    = batchOutPutService;
     this._supplyService         = supplyService;
 }