Exemplo n.º 1
0
 public AssuntoController(INotification notifier,
                          IAssuntoService dbAssunto,
                          IMapper mapper) : base(notifier)
 {
     _dbAssunto = dbAssunto;
     _mapper    = mapper;
 }
Exemplo n.º 2
0
 public ComunicadoController(IUsuarioService dbUsuario,
                             IComunicadoService dbComunicado,
                             IComunicadoAcaoService dbComunicadoAcao,
                             IAssuntoService dbAssunto,
                             INotification notifier,
                             IMapper mapper) : base(notifier)
 {
     _mapper           = mapper;
     _dbComunicado     = dbComunicado;
     _dbComunicadoAcao = dbComunicadoAcao;
     _dbAssunto        = dbAssunto;
     _dbUsuario        = dbUsuario;
 }
Exemplo n.º 3
0
 public AssuntoController(IAssuntoService assuntoService)
 {
     _assuntoService = assuntoService;
 }
Exemplo n.º 4
0
 public AppAssuntoService(IAssuntoService service)
 {
     _service = service;
 }
Exemplo n.º 5
0
 public AssuntoController(IMapper mapper, IAssuntoService assuntoService) : base(mapper)
 {
     _assuntoService = assuntoService;
 }
 public AssuntoApplicationService(IAssuntoService assuntoService)
     : base(assuntoService)
 {
     _assuntoService = assuntoService;
 }
Exemplo n.º 7
0
 public MensagemController(IMapper mapper, IMensagemService mensagemService, IAssuntoService assuntoService) : base(mapper)
 {
     _mensagemService = mensagemService;
     _assuntoService  = assuntoService;
 }