public void Delete <T>(T entity) where T : class
 {
     _context.Remove(entity);
 }