public ManobristasController(IManobristaRepository manobristaRepository,
                              IMapper mapper, IManobristaService manobristaService,
                              INotificador notificador) : base(notificador)
 {
     _manobristaRepository = manobristaRepository;
     _mapper            = mapper;
     _manobristaService = manobristaService;
 }
Exemplo n.º 2
0
 public ManobristaController(IManobristaService service) : base(service)
 {
     this.Service = service;
 }
Exemplo n.º 3
0
 public ManobristaAppService(IManobristaService service, IMapper mapper)
     : base(service, mapper)
 {
     _service = service;
     _mapper  = mapper;
 }