Esempio n. 1
0
 public MensajesController(IPaisService IPaisService, IBitacoraMapper IBitacoraMa, IMensajeReceptorService pIMensajeReceptorService, IAdjuntoService IAdjuntoService, IMensajeReceptor pIMensajeReceptor, IMensajeService pImensajeService, IMensajeMap pIMensajeMap, IAdjuntoMap pIAdjuntoMap, IUserService pIUserService, IHostingEnvironment hostingEnvironment)
 {
     this.IPaisService            = IPaisService;
     this.IBitacoraMap            = IBitacoraMa;
     this.ImensajeService         = pImensajeService;
     this.IMensajeMap             = pIMensajeMap;
     this.IAdjuntoMap             = pIAdjuntoMap;
     this.IAdjuntoService         = IAdjuntoService;
     this.IUserService            = pIUserService;
     this.hostingEnvironment      = hostingEnvironment;
     this.IMensajeReceptorMap     = pIMensajeReceptor;
     this.IMensajeReceptorService = pIMensajeReceptorService;
 }
 public PedidoController(IPedidoService PedidoService, IAdjuntoService AdjuntoService, IPedidoDetalleService PedidoDetalleService, ICatalogoService CatalogoService, IModalidadService ModalidadService, IMonedaService MonedaService, IHerramientaService HerramientaService, IEstadoDetalleService EstadoDetalleService, IEstadoPedidoService EstadoPedidoService, IClienteService ClienteService, IUsuarioService UsuarioService, IPatenteService PatenteService)
 {
     this._PedidoService = PedidoService;
     this._AdjuntoService = AdjuntoService;
     this._PedidoDetalleService = PedidoDetalleService;
     this._CatalogoService = CatalogoService;
     this._ModalidadService  = ModalidadService;
     this._MonedaService = MonedaService;
     this._HerramientaService = HerramientaService;
     this._EstadoDetalleService = EstadoDetalleService;
     this._EstadoPedidoService = EstadoPedidoService;
     this._ClienteService = ClienteService;
     this._UsuarioService = UsuarioService;
     this._PatenteService = PatenteService;
 }
Esempio n. 3
0
 public AdjuntoController(IAdjuntoService adjuntoService, IMapper mapper)
 {
     _adjuntoService = adjuntoService;
     _mapper         = mapper;
 }