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