// transfer model to data and insert, on transaction // links: // docLink: http://sql2x.org/documentationLink/fbeb7c34-b2d7-403b-a9fd-503ab705ef81 public void Insert(CrudeTitleRefModel model, SqlConnection connection, SqlTransaction transaction) { var data = new CrudeTitleRefData(); ModelToData(model, data); data.Insert(connection, transaction); }
// insert all object members as a new row in table, in a transaction // the transaction and or connection state is not changed in any way other than what SqlClient does to it. // it is the callers responsibility to commit or rollback the transaction // links: // docLink: http://sql2x.org/documentationLink/542f9458-c3b9-4edf-8575-0870086f3a7f public void Insert(CrudeTitleRefContract contract, SqlConnection connection, SqlTransaction transaction) { var data = new CrudeTitleRefData(); ContractToData(contract, data); data.Insert(connection, transaction); }
// transfer model to data and insert // links: // docLink: http://sql2x.org/documentationLink/17cd8423-3c78-459f-a45b-773fcfbc3b7d public void Insert(CrudeTitleRefModel model) { var data = new CrudeTitleRefData(); ModelToData(model, data); data.Insert(); }
// insert all object members as a new row in table // links: // docLink: http://sql2x.org/documentationLink/75aad010-e6aa-4f19-a6e5-597456aa20d8 public void Insert(CrudeTitleRefContract contract) { var data = new CrudeTitleRefData(); ContractToData(contract, data); data.Insert(); }