public async Task Create(Student student)
 {
     db.Students.Add(student);
     await db.SaveChangesAsync();
 }