public GeracaoDeEntregaDeLicaoService(ILicaoRepository licaoRepository, IConsultaDeAlunosService consultaDeAlunosService,
                                       IEntregaDeLicaoService entregaDeLicaoService, IConsultaEntregaDeLicaoService consultaEntregaService)
 {
     _consultaDeAlunosService = consultaDeAlunosService;
     _licaoRepository         = licaoRepository;
     _entregaDeLicaoService   = entregaDeLicaoService;
     _consultaEntregaService  = consultaEntregaService;
 }
 public CaseDeNegocioService(ICaseDeNegocioRepository caseDeNegocioRepository, IAlunoDoCaseRepository alunoDoCaseRepository,
                             IConsultaDeAlunosService consultaDeAlunosService)
     : base(caseDeNegocioRepository)
 {
     _caseDeNegocioRepository = caseDeNegocioRepository;
     _alunoDoCaseRepository   = alunoDoCaseRepository;
     _consultaDeAlunosService = consultaDeAlunosService;
 }
 public CaseController(ICaseDeNegocioService caseDeNegocioService, UsuarioLogado usuarioLogado,
                       IConsultaDeAlunosService consultaDeAlunosService, IGrupoService grupoService)
 {
     _caseDeNegocioService    = caseDeNegocioService;
     _usuarioLogado           = usuarioLogado;
     _consultaDeAlunosService = consultaDeAlunosService;
     _grupoService            = grupoService;
 }
Beispiel #4
0
 public UsuarioController(IUsuarioService usuarioService, UsuarioLogado usuarioLogado, IEntregaDeTrofeuService entregaDeTrofeuService,
                          IConsultaDeAlunosService consultaDeAlunosService, ICaseDeNegocioService caseDeNegocioService)
 {
     _usuarioService          = usuarioService;
     _usuarioLogado           = usuarioLogado;
     _entregaDeTrofeuService  = entregaDeTrofeuService;
     _consultaDeAlunosService = consultaDeAlunosService;
     _caseDeNegocioService    = caseDeNegocioService;
 }