public void Delete(int id)
 {
     _context.Remove(Select(id));
     _context.SaveChanges();
 }