public async Task Update(Student student)
 {
     db.Entry(student).State = EntityState.Modified;
     await db.SaveChangesAsync();
 }