public ServiceManager(IServiceGateway iServiceGateway, ICommonGateway iCommonGateway, IProductReplaceGateway iProductReplaceGateway, IPolicyGateway iPolicyGateway)
 {
     _iServiceGateway        = iServiceGateway;
     _iCommonGateway         = iCommonGateway;
     _iProductReplaceGateway = iProductReplaceGateway;
     _iPolicyGateway         = iPolicyGateway;
 }
 public ProductManager(IProductGateway iProductGateway, ICommonGateway iCommonGateway)
 {
     _iProductGateway = iProductGateway;
     _iCommonGateway  = iCommonGateway;
 }
 public InvoiceManager(ICommonGateway iCommonGateway, IInvoiceGateway iInvoiceGateway)
 {
     _iCommonGateway  = iCommonGateway;
     _iInvoiceGateway = iInvoiceGateway;
 }
 public OrderManager(IOrderGateway iOrderGateway, ICommonGateway iCommonGateway)
 {
     _iCommonGateway = iCommonGateway;
     _iOrderGateway  = iOrderGateway;
 }
Beispiel #5
0
 public CommonManager(ICommonGateway iCommonGateway)
 {
     _iCommonGateway = iCommonGateway;
 }
Beispiel #6
0
 public InventoryManager(IInventoryGateway iInventoryGateway, ICommonGateway iCommonGateway)
 {
     _iInventoryGateway = iInventoryGateway;
     _iCommonGateway    = iCommonGateway;
 }
Beispiel #7
0
 public FactoryDeliveryManager(IFactoryDeliveryGateway iFactoryDeliveryGateway, IBranchGateway iBranchGateway, ICommonGateway iCommonGateway)
 {
     _iFactoryDeliveryGateway = iFactoryDeliveryGateway;
     _iBranchGateway          = iBranchGateway;
 }
 public ClientGateway(ICommonGateway iCommonGateway)
 {
     _iCommonGateway = iCommonGateway;
 }