예제 #1
0
 public DataSheetService(IDataSheetApp dataSheetApp, IDataSheetItemApp dataSheetItemApp, IPricingApp pricingApp, IMeasureUnitApp measureUnitApp, IProductApp productApp)
 {
     this.dataSheetApp     = dataSheetApp;
     this.dataSheetItemApp = dataSheetItemApp;
     this.pricingApp       = pricingApp;
     this.measureUnitApp   = measureUnitApp;
     this.productApp       = productApp;
 }
예제 #2
0
 public OrderService(IOrderApp orderApp,
                     IPricingApp pricingApp,
                     IProductApp productApp,
                     IOrderItemApp orderItemApp,
                     IMeasureUnitApp measureUnitApp,
                     IDataSheetService dataSheetService,
                     ITransactionApp transactionApp)
 {
     this.orderApp         = orderApp;
     this.pricingApp       = pricingApp;
     this.productApp       = productApp;
     this.orderItemApp     = orderItemApp;
     this.measureUnitApp   = measureUnitApp;
     this.dataSheetService = dataSheetService;
     this.transactionApp   = transactionApp;
 }
예제 #3
0
 public HomeController(ICustomerApp customerApp, IProductApp productApp)
 {
     _customerApp = customerApp;
     _productApp  = productApp;
 }
 public ProductsController(IProductApp productApp)
 {
     _productApp = productApp;
 }
 public ProductsController(IProductApp productApp)
 {
     _productApp = productApp;
 }
예제 #6
0
 public ProductsController(IProductApp productApp, IMapper mapper, INotifier notifier) : base(notifier)
 {
     _productApp = productApp;
     _mapper     = mapper;
 }
예제 #7
0
 public ProductController(IProductApp service)
 {
     _service = service;
 }
예제 #8
0
 public ProductsController(IProductApp iProductApp, IStockApp iStockApp, IStockProductsApp iStockProductApp)
 {
     _iProductApp      = iProductApp;
     _iStockApp        = iStockApp;
     _iStockProductApp = iStockProductApp;
 }
예제 #9
0
 public ProductsController(IProductApp productApp, IMapper mapper)
 {
     _productApp = productApp;
     _mapper     = mapper;
 }
예제 #10
0
 public ProductService(IProductApp ProductApp)
 {
     this.productApp = ProductApp;
 }