Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
0
 public TransactionService(ITransactionApp app)
 {
     this.app = app;
 }