public StudentsService()
 {
     this._studentsRepo   = new StudentsRepository();
     this._studentsMapper = new StudentsMapper();
 }
Beispiel #2
0
 internal IEnumerable <StudentViewModel> GetAllStudentsByDisciplineName(DisciplineType discipline)
 {
     return(StudentsMapper.Map(this._studentsService.GetAllStudentsByDisciplineName(discipline)));
 }