예제 #1
0
 public void CreateRangePayments(IEnumerable <object> payments)
 {
     _context.AddRange(payments);
     _context.SaveChanges();
 }
예제 #2
0
 public void CreateRangeSecurityUsers(IEnumerable <object> securityUsers, Type entityType)
 {
     _context.AddRange(securityUsers);
     _context.SaveChanges();
 }
 public void CreateRangeMainEntityRelations(IEnumerable <object> mainEntityRelations)
 {
     _context.AddRange(mainEntityRelations);
     _context.SaveChanges();
 }
예제 #4
0
 public void CreateRangeDictionaries(IEnumerable <object> dictionaries)
 {
     _context.AddRange(dictionaries);
     _context.SaveChanges();
 }
 public void CreateRangeProtectionDocRelations(IEnumerable <object> protectionDocRelations)
 {
     _context.AddRange(protectionDocRelations);
     _context.SaveChanges();
 }