public interface IRepository<T> where T : class, new(){T Create();T Update(T entity);T Insert(T entity);void Delete(T entity);T Find(params object[] keyValues);List<T> FindAll();}
喵喵时光机
相关分类