Exemple #1
0
 public CountersDTO GetCounters()
 {
     return(new CountersDTO
     {
         TotalAlunos = _alunoRepository.GetCount(),
         TotalAulas = _aulaRepository.GetCount(),
         TotalTurmas = _turmaRepository.GetCount(),
     });
 }