public ClienteController(IClienteService ClienteService, IPedidoService PedidoService, IIndustriaService IndustriaService, IUsuarioService UsuarioService, IContactoService ContactoService, IDireccionService DireccionService) 
 {
     this._ClienteService = ClienteService;
     this._PedidoService = PedidoService;
     this._UsuarioService = UsuarioService;
     this._IndustriaService = IndustriaService;
     this._ContactoService = ContactoService;
     this._DireccionService = DireccionService;
 }
Ejemplo n.º 2
0
 public IndustriaAppService(IIndustriaService service, IMapper mapper) : base(service, mapper)
 {
     this.service = service;
     this.mapper  = mapper;
 }