public ControllerService(IDistribuicaoRepository distribuicaoRepository, IDistribuicaoService distribuicaoService,
                                 IJuridicoService juridicoService, IJuridicoRepository juridicoRepository,
                                 IAndamentoRepository andamentoRepository, IAndamentoService andamentoService,
                                 ILogEnvioRepository logEnvioRepository)
        {
            _distribuicaoRepository = distribuicaoRepository;
            _distribuicaoService    = distribuicaoService;

            _juridicoRepository = juridicoRepository;
            _juridicoService    = juridicoService;

            _andamentoService   = andamentoService;
            _logEnvioRepository = logEnvioRepository;
        }
Beispiel #2
0
 public DistribuicaoController(IDistribuicaoService distService, IAuthService authService)
 {
     _distService = distService;
     _authService = authService;
 }
 public DistribuicaoController(IDistribuicaoService distService)
 {
     _distService = distService;
 }