예제 #1
0
파일: BaseDAL.cs 프로젝트: plaiuZt/ctms-web
 public void Add <T>(List <T> entitys) where T : class
 {
     dbContext.AddRange(entitys);
 }
예제 #2
0
 public void Add(List <T> entitys)
 {
     dbContext.AddRange(entitys);
 }