// GET: api/Professors
 public async Task <ICollection <ProfessorResultViewModel> > GetProfessors()
 {
     return((await _professors.All())
            .Select(p => (ProfessorResultViewModel)p)
            .ToList());
 }