public async Task <ActionResult <IEnumerable <Student> > > GetStudentsNamedSmith()
 {
     return(Ok(await students.Where(s => StudentQueries.GetStudentBySurname(s, "Smith")).ToListAsync()));
 }