Beispiel #1
0
 public virtual int UpdateObject(object obj, DbTransaction transaction)
 {
     return(SqlDatabaseHelper.InsertObject(obj, this, this.GenerateUpdateStoredProcedureName(), transaction));
 }
Beispiel #2
0
 public virtual int CreateObject(object obj)
 {
     return(SqlDatabaseHelper.InsertObject(obj, this, this.GenerateInsertStoredProcedureName()));
 }