public ReportManager(IOrderManager iOrderManager, IReportGateway iReportGateway, IInventoryManager iInventoryManager, IBarCodeManager iBarCodeManager, IProductReplaceGateway iProductReplaceGateway)
 {
     _iOrderManager          = iOrderManager;
     _iReportGateway         = iReportGateway;
     _iInventoryManager      = iInventoryManager;
     _iBarCodeManager        = iBarCodeManager;
     _iProductReplaceGateway = iProductReplaceGateway;
 }
 public RenderWordUseCase(IReportGateway wordGateway)
 {
     _wordGateway = wordGateway ?? throw new ArgumentNullException(nameof(wordGateway));
 }
 public RenderExcelUseCase(IReportGateway reportGateway)
 {
     _reportGateway = reportGateway;
 }
Esempio n. 4
0
 public ReportManager(IOrderManager iOrderManager, IReportGateway iReportGateway)
 {
     _iOrderManager  = iOrderManager;
     _iReportGateway = iReportGateway;
 }
Esempio n. 5
0
 public OrderManager(IOrderGateway iOrderGateway, ICommonGateway iCommonGateway, IReportGateway iReportGateway)
 {
     _iCommonGateway = iCommonGateway;
     _iOrderGateway  = iOrderGateway;
     _iReportGateway = iReportGateway;
 }