예제 #1
0
 public OcorrenciaService(
     IOcorrenciaRepository ocorrenciaRepository,
     IUnitOfWork unitOfWork
     )
 {
     _ocorrenciaRepository = ocorrenciaRepository;
     _unitOfWork           = unitOfWork;
 }
 public TramiteService(IOcorrenciaRepository ocorrenciaRepository,
                       ITramiteRepository tramiteRepository,
                       IUsuarioRepository usuarioRepository,
                       INotificador notificador) : base(notificador)
 {
     _ocorrenciaRepository = ocorrenciaRepository;
     _tramiteRepository    = tramiteRepository;
     _usuarioRepository    = usuarioRepository;
 }
예제 #3
0
        public OcorrenciaService(IDataContext dataContext,
                                 IOcorrenciaRepository ocorrenciaRepository,
                                 IInteracaoRepository interacaoRepository,
                                 IUsuarioRepository usuarioRepository)
        {
            _dataContext          = dataContext;
            _ocorrenciaRepository = ocorrenciaRepository;
            _interacaoRepository  = interacaoRepository;
            _usuarioRepository    = usuarioRepository;

            ResponseService = new ResponseService();
        }
 public OcorrenciaService(IAtivoRepository ativoRepository,
                          IOcorrenciaAtivoRepository ocorrenciaAtivoRepository,
                          IOcorrenciaRepository ocorrenciaRepository,
                          ITramiteRepository tramiteRepository,
                          ITurnoOcorrenciaRepository turnoOcorrenciaRepository,
                          ITurnoRepository turnoRepository,
                          IUsuarioRepository usuarioRepository,
                          INotificador notificador) : base(notificador)
 {
     _ativoRepository           = ativoRepository;
     _ocorrenciaAtivoRepository = ocorrenciaAtivoRepository;
     _ocorrenciaRepository      = ocorrenciaRepository;
     _tramiteRepository         = tramiteRepository;
     _turnoOcorrenciaRepository = turnoOcorrenciaRepository;
     _turnoRepository           = turnoRepository;
     _usuarioRepository         = usuarioRepository;
 }
예제 #5
0
 public IncluirOcorrenciaService(IOcorrenciaRepository ocorrenciaRepository)
 {
     _ocorrenciaRepository = ocorrenciaRepository;
 }
 public OcorrenciaCommandHandler(IOcorrenciaRepository repository)
 {
     _ocorrenciaRepository = repository;
 }
예제 #7
0
 public RelatorioService(IOcorrenciaRepository ocorrenciaRepository)
 {
     _ocorrenciaRepository = ocorrenciaRepository;
 }