Beispiel #1
0
 public GradeService(GradeRepository gradeRepository, ProfessorService professorService, AlunoService alunoService, MatriculaService matriculaService)
 {
     _gradeRepository  = gradeRepository;
     _professorService = professorService;
     _alunoService     = alunoService;
     _matriculaService = matriculaService;
 }
Beispiel #2
0
 public MatriculaService(MatriculaRepository matriculaRepository, AlunoService alunoService, SubgradeService subgradeService)
 {
     _matriculaRepository = matriculaRepository;
     _alunoService        = alunoService;
     _subgradeService     = subgradeService;
 }