Example #1
0
 public TurmasController(UserManager <ApplicationUser> userManager, IProfessorService professorService,
                         ITurmaService turmaService, IAlunoService alunoService, ITurma_AlunoService aluno_Turma_Service)
 {
     _userManager         = userManager;
     _turmaService        = turmaService;
     _alunoService        = alunoService;
     _aluno_Turma_Service = aluno_Turma_Service;
     _professorService    = professorService;
 }
 public AlunoTurmaController(ITurma_AlunoService turmaAlunoService, IProfessorService professorService)
 {
     _turmaAlunoService = turmaAlunoService;
     _professorService  = professorService;
 }