Example #1
0
 public InventoriesController(IInventoryService inventoryService, IInventoryDailyReportService inventoryDailyReportService,
                              IInventoryReportService inventoryReportService, IHostingEnvironment hostingEnvironment)
 {
     _inventoryService            = inventoryService;
     _inventoryDailyReportService = inventoryDailyReportService;
     _inventoryReportService      = inventoryReportService;
     _hostingEnvironment          = hostingEnvironment;
 }
Example #2
0
 public InventoryReportsController(IInventoryDailyReportService inventoryDailyReportService, IInventoryReportService inventoryReportService)
 {
     _inventoryDailyReportService = inventoryDailyReportService;
     _inventoryReportService      = inventoryReportService;
 }