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; }
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; }
public DomainService(IMeasureUnitApp measureUnitApp, ICustomerTypeApp customerTypeApp, IRoleApp roleApp, IContactTypeApp contactTypeApp, IOrderStatusApp orderStatusApp, IOrderItemStatusApp orderItemStatusApp, IPaymentStatusApp paymentStatus, ITransactionTypeApp transactionTypeApp) { this.measureUnitApp = measureUnitApp; this.customerTypeApp = customerTypeApp; this.roleApp = roleApp; this.contactTypeApp = contactTypeApp; this.orderStatusApp = orderStatusApp; this.orderItemStatusApp = orderItemStatusApp; this.paymentStatus = paymentStatus; this.transactionTypeApp = transactionTypeApp; }
public PricingService(IPricingApp pricingApp, IMeasureUnitApp measureUnitApp) { this.pricingApp = pricingApp; this.measureUnitApp = measureUnitApp; }