public interface IBase<T>//基类
{ IEnumerable<T> SelectAll();//查询所有T FindById(int ID);//根据id查数据
void IsertInfo(T entity);//插入
void Delete(int ID); //删除
void Update(T entity);//修改
}
本文共 234 字,大约阅读时间需要 1 分钟。
public interface IBase<T>//基类
{ IEnumerable<T> SelectAll();//查询所有T FindById(int ID);//根据id查数据
void IsertInfo(T entity);//插入
void Delete(int ID); //删除
void Update(T entity);//修改
}
转载于:https://www.cnblogs.com/wantnewlive/p/9921263.html