Ejemplo n.º 1
0
 public CustomerAgent(IConnectionFactory ConnectionFactory,
     CustomerFactory Factory, CustomerAppService CustomerAppService)
 {
     this.Factory = Factory;
     this.ConnectionFactory = ConnectionFactory;
     this.CustomerAppService = CustomerAppService;
 }
Ejemplo n.º 2
0
 public CustomerController(
     IMappingEngine MappingEngine, 
     CustomerFactory CustomerFactory,            
     CustomerAppService CustomerAppService)
 {
     this.MappingEngine = MappingEngine;
     this.CustomerFactory = CustomerFactory;
     this.CustomerAppService = CustomerAppService;
 }