public OrderController(IOrderManager iOrderManager, IProductManager iProductManager, IReportManager iReportManager, IBarCodeManager iBarCodeManager)
 {
     _iProductManager = iProductManager;
     _iOrderManager   = iOrderManager;
     _iReportManager  = iReportManager;
     _iBarCodeManager = iBarCodeManager;
 }
예제 #2
0
 public ScrapController(IProductManager iProductManager, IScrapManager iScrapManager, ICommonManager iCommonManager, IBarCodeManager iBarCodeManager)
 {
     _iProductManager = iProductManager;
     _iScrapManager   = iScrapManager;
     _iCommonManager  = iCommonManager;
     _iBarCodeManager = iBarCodeManager;
 }
 public HomeController(IServiceManager iServiceManager, IEmployeeManager iEmployeeManager, IInventoryManager iInventoryManager, IReportManager iReportManager, IBarCodeManager iBarCodeManager)
 {
     _iServiceManager   = iServiceManager;
     _iEmployeeManager  = iEmployeeManager;
     _iInventoryManager = iInventoryManager;
     _iReportManager    = iReportManager;
     _iBarCodeManager   = iBarCodeManager;
 }
예제 #4
0
 public ReportManager(IOrderManager iOrderManager, IReportGateway iReportGateway, IInventoryManager iInventoryManager, IBarCodeManager iBarCodeManager, IProductReplaceGateway iProductReplaceGateway)
 {
     _iOrderManager          = iOrderManager;
     _iReportGateway         = iReportGateway;
     _iInventoryManager      = iInventoryManager;
     _iBarCodeManager        = iBarCodeManager;
     _iProductReplaceGateway = iProductReplaceGateway;
 }
 public ProductController(IInventoryManager iInventoryManager, IProductManager iProductManager, IBranchManager iBranchManager, IReportManager iReportManager, IBarCodeManager iBarCodeManager)
 {
     _iInventoryManager = iInventoryManager;
     _iProductManager   = iProductManager;
     _iBranchManager    = iBranchManager;
     _iReportManager    = iReportManager;
     _iBarCodeManager   = iBarCodeManager;
 }
예제 #6
0
 public BarCodeGeneratorController(ICommonManager iCommonManager, IProductManager iProductManager, IBarCodeManager iBarCodeManager)
 {
     _iCommonManager  = iCommonManager;
     _iProductManager = iProductManager;
     _iBarCodeManager = iBarCodeManager;
 }
 public ReportsController(IBarCodeManager iBarCodeManager)
 {
     _iBarCodeManager = iBarCodeManager;
 }