// transfer model to data and insert, on transaction
        // links:
        //  docLink: http://sql2x.org/documentationLink/fbeb7c34-b2d7-403b-a9fd-503ab705ef81
        public void Insert(CrudeFerryIdentifierModel model, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeFerryIdentifierData();

            ModelToData(model, 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(CrudeFerryIdentifierModel model)
        {
            var data = new CrudeFerryIdentifierData();

            ModelToData(model, data);
            data.Insert();
        }
示例#3
0
 // 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(CrudeFerryIdentifierContract contract, SqlConnection connection, SqlTransaction transaction) {
     var data = new CrudeFerryIdentifierData();
     ContractToData(contract, data);
     data.Insert(connection, transaction);
 }
示例#4
0
 // insert all object members as a new row in table
 // links:
 //  docLink: http://sql2x.org/documentationLink/75aad010-e6aa-4f19-a6e5-597456aa20d8
 public void Insert(CrudeFerryIdentifierContract contract) {
     var data = new CrudeFerryIdentifierData();
     ContractToData(contract, data);
     data.Insert();
 }