예제 #1
0
 /// <summary>
 /// 批量添加
 /// </summary>
 /// <param name="entitys">待添加实体集合</param>
 /// <returns></returns>
 public int AddList <T>(List <T> entitys) where T : IEntity, new()
 {
     return(service.AddList(entitys));
 }
예제 #2
0
 /// <summary>
 /// 批量添加
 /// </summary>
 /// <param name="entitys">待添加实体集合</param>
 /// <returns></returns>
 public int AddList(List <T> entitys)
 {
     return(service.AddList(entitys));
 }
예제 #3
0
파일: BaseBLL.cs 프로젝트: wyh0395/Berry
 /// <summary>
 /// 批量添加
 /// </summary>
 /// <param name="entitys"></param>
 /// <returns></returns>
 public virtual int AddList(List <T> entitys)
 {
     return(baseService.AddList(entitys));
 }