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