Example #1
0
 public static bool Save(this IRCoreEntitiesIngresso db)
 {
     return(((DbContext)db).Save());
 }
Example #2
0
 public static bool Save <T>(this IRCoreEntitiesIngresso db, T obj, bool updateDataBase = true, bool withException = false, params string[] pkNames) where T : class
 {
     return(((DbContext)db).Save(obj, updateDataBase, withException, pkNames));
 }