public CanaisController(ICanaisService icanaisServicet,
                         IAmbienteService iAmbienteRepository,
                         IMapper mapper)
 {
     _icanaisService      = icanaisServicet;
     _iAmbienteRepository = iAmbienteRepository;
     _mapper = mapper;
 }
Beispiel #2
0
 public CategoriasController(ICategoriaService categoriaService,
                             IMapper mapper,
                             IAmbienteService iAmbienteRepository)
 {
     _categoriaService    = categoriaService;
     _mapper              = mapper;
     _iAmbienteRepository = iAmbienteRepository;
 }
Beispiel #3
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="agendaService"></param>
 /// <param name="iAmbienteService"></param>
 /// <param name="mapper"></param>
 public AgendasController(IAgendaService agendaService,
                          IAmbienteService iAmbienteService,
                          IMapper mapper)
 {
     _mapper           = mapper;
     _iAmbienteService = iAmbienteService;
     _iAgendaService   = agendaService;
 }
 public AmbienteController(IAmbienteService service, IMapper mapper)
 {
     this._service = service;
     this._mapper  = mapper;
 }
 public AmbientesController(IAmbienteService iAmbienteService, IMapper mapper)
 {
     _mapper           = mapper;
     _iAmbienteService = iAmbienteService;
 }
Beispiel #6
0
 public AmbientesController(IAmbienteService ambienteService)
 {
     _ambienteService = ambienteService;
 }
 public AmbienteController(IAmbienteService ambiente)
 {
     _ambiente = ambiente;
 }
Beispiel #8
0
 public ImportacaoAmbienteController(IImportacaoAmbienteService serv, ITipoAmbienteService tpAmbienteServ, IAmbienteService ambienteServ)
 {
     _serv           = serv;
     _tpAmbienteServ = tpAmbienteServ;
     _ambienteServ   = ambienteServ;
 }
 public AmbienteController(IAmbienteService ambienteService, IMapper mapper)
 {
     _ambienteService = ambienteService;
     _mapper          = mapper;
 }