Ejemplo n.º 1
0
 Int32 ITable.Insert(Database database, TableRecord record)
 {
     return(this.Insert(database, (T)record));
 }
Ejemplo n.º 2
0
 Int32 ITable.Delete(Database database, TableRecord record)
 {
     return(this.Delete(database, (T)record));
 }
Ejemplo n.º 3
0
 Int32 ITable.Update(TableRecord record)
 {
     return(this.Update((T)record));
 }
Ejemplo n.º 4
0
 Int32 ITable.Delete(TableRecord record)
 {
     return(this.Delete((T)record));
 }
Ejemplo n.º 5
0
 TableRecord ITable.SelectByPrimaryKey(Database database, TableRecord record)
 {
     return(this.SelectByPrimaryKey(database, (T)record));
 }
Ejemplo n.º 6
0
 Int32 ITable.Insert(TableRecord record)
 {
     return(this.Insert((T)record));
 }
Ejemplo n.º 7
0
 Int32 ITable.Delete(TransactionContext context, TableRecord record)
 {
     return((this as ITable).Delete(context.Database, record));
 }
Ejemplo n.º 8
0
 TableRecord ITable.SelectByPrimaryKey(TableRecord record)
 {
     return(this.SelectByPrimaryKey((T)record));
 }
Ejemplo n.º 9
0
 Int32 ITable.Insert(TransactionContext context, TableRecord record)
 {
     return((this as ITable).Insert(context.Database, record));
 }
Ejemplo n.º 10
0
 TableRecord ITable.SelectByPrimaryKey(TransactionContext context, TableRecord record)
 {
     return((this as ITable).SelectByPrimaryKey(context.Database, record));
 }
Ejemplo n.º 11
0
 public static Int32 Delete <T>(this Database database, T table, TableRecord record)
     where T : ITable
 {
     return(table.Delete(database, record));
 }
Ejemplo n.º 12
0
 public static Int32 Insert <T>(this Database database, T table, TableRecord record)
     where T : ITable
 {
     return(table.Insert(database, record));
 }
Ejemplo n.º 13
0
 public static TableRecord SelectByPrimaryKey <T>(this Database database, T table, TableRecord record)
     where T : ITable
 {
     return(table.SelectByPrimaryKey(database, record));
 }