Ejemplo n.º 1
0
 public void InsertMultiples <T>(IList <T> entities, bool getLastId = true) where T : new()
 {
     InsertEntity.InsertMultiples(connectionString, entities, getLastId);
 }
Ejemplo n.º 2
0
 public void Insert <T>(T entity, bool getLastId = true) where T : new()
 {
     InsertEntity.Insert(connectionString, entity, getLastId);
 }