// update all object members on a row in table based on primary key // links: // docLink: http://sql2x.org/documentationLink/ce75e72e-fb16-4f4e-a2e6-dbd079dfa206 public void Update(CrudeFinancialPaymentContract contract) { var data = new CrudeFinancialPaymentData(); ContractToData(contract, data); data.Update(); }
// fetch all rows from table into new List of Contracts, filtered by any column // links: // docLink: http://sql2x.org/documentationLink/ce01ef4a-5cd0-4e51-b211-9c0a15b791a0 public List <CrudeFinancialPaymentContract> FetchWithFilter(System.Guid financialPaymentId, string financialPaymentTypeRcd, System.Guid financialPaymentCardId, System.Guid financialPaymentCashId, System.Guid financialPaymentVoucherId, System.Guid financialPaymentCouponId, System.Guid financialPaymentBankId, System.Guid financialPaymentAccountingId, System.Guid userId, System.DateTime dateTime) { var list = new List <CrudeFinancialPaymentContract>(); List <CrudeFinancialPaymentData> dataList = CrudeFinancialPaymentData.FetchWithFilter( financialPaymentId: financialPaymentId, financialPaymentTypeRcd: financialPaymentTypeRcd, financialPaymentCardId: financialPaymentCardId, financialPaymentCashId: financialPaymentCashId, financialPaymentVoucherId: financialPaymentVoucherId, financialPaymentCouponId: financialPaymentCouponId, financialPaymentBankId: financialPaymentBankId, financialPaymentAccountingId: financialPaymentAccountingId, userId: userId, dateTime: dateTime ); foreach (CrudeFinancialPaymentData data in dataList) { var crudeFinancialPaymentContract = new CrudeFinancialPaymentContract(); DataToContract(data, crudeFinancialPaymentContract); list.Add(crudeFinancialPaymentContract); } return(list); }
// insert all object members as a new row in table // links: // docLink: http://sql2x.org/documentationLink/75aad010-e6aa-4f19-a6e5-597456aa20d8 public void Insert(CrudeFinancialPaymentContract contract) { var data = new CrudeFinancialPaymentData(); ContractToData(contract, data); data.Insert(); }
// transfer model to data and insert // links: // docLink: http://sql2x.org/documentationLink/17cd8423-3c78-459f-a45b-773fcfbc3b7d public void Insert(CrudeFinancialPaymentModel model) { var data = new CrudeFinancialPaymentData(); ModelToData(model, data); data.Insert(); }
// transfer model to data and update // links: // docLink: http://sql2x.org/documentationLink/658fda50-2ad3-414e-9299-2b399d17a057 public void Update(CrudeFinancialPaymentModel model) { var data = new CrudeFinancialPaymentData(); ModelToData(model, data); data.Update(); }
// transfer model to data and update, on a transaction // links: // docLink: http://sql2x.org/documentationLink/aa07e05b-edc8-4e09-bf93-bf2a40c93c09 public void Update(CrudeFinancialPaymentModel model, SqlConnection connection, SqlTransaction transaction) { var data = new CrudeFinancialPaymentData(); ModelToData(model, data); data.Update(connection, transaction); }
// update all object members on a row in table based on primary key, on 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/b798ad6b-f4b8-466a-9086-6588a814fcf3 public void Update(CrudeFinancialPaymentContract contract, SqlConnection connection, SqlTransaction transaction) { var data = new CrudeFinancialPaymentData(); ContractToData(contract, data); data.Update(connection, transaction); }
// transfer model list to data list // links: // crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete // docLink: http://sql2x.org/documentationLink/1d6a48d9-fe39-4397-b8fa-a332da164cbf // parameters: // CrudeFinancialPaymentData: key of table CrudeFinancialPaymentData public static void ModelListToDataList(List <CrudeFinancialPaymentModel> modelList, List <CrudeFinancialPaymentData> dataList) { foreach (CrudeFinancialPaymentModel model in modelList) { var data = new CrudeFinancialPaymentData(); ModelToData(model, data); dataList.Add(data); } }
// copy all rows from a List of SOAP Contracts to a List of serialized data objects // links: // docLink: http://sql2x.org/documentationLink/1c6c6b9c-e201-4590-8c69-d38a0ad2a9f7 public static void ContractListToDataList(List <CrudeFinancialPaymentContract> contractList, List <CrudeFinancialPaymentData> dataList) { foreach (CrudeFinancialPaymentContract contract in contractList) { var data = new CrudeFinancialPaymentData(); CrudeFinancialPaymentService.ContractToData(contract, data); dataList.Add(data); } }
// fetch by Primary key into current object // links: // crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete // docLink: http://sql2x.org/documentationLink/fdcc33b4-08f1-43c3-ae28-95fbf029c3bd // parameters: // CrudeFinancialPaymentData: primary key of table CrudeFinancialPaymentData public CrudeFinancialPaymentModel FetchByFinancialPaymentId(System.Guid financialPaymentId) { var dataAccessLayer = new CrudeFinancialPaymentData(); var model = new CrudeFinancialPaymentModel(); dataAccessLayer.FetchByFinancialPaymentId(financialPaymentId); DataToModel(dataAccessLayer, model); return(model); }
// fetch by Primary key into current object // links: // crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete // docLink: http://sql2x.org/documentationLink/bbab4791-c9e7-49bf-90d5-fca19b1fedaa // parameters: // financialPaymentId: primary key of table financial_payment public CrudeFinancialPaymentContract FetchByFinancialPaymentId(System.Guid financialPaymentId) { var dataAccessLayer = new CrudeFinancialPaymentData(); var contract = new CrudeFinancialPaymentContract(); dataAccessLayer.FetchByFinancialPaymentId(financialPaymentId); DataToContract(dataAccessLayer, contract); return(contract); }
// copy all columns from a serialized data object to a SOAP Contract // links: // docLink: http://sql2x.org/documentationLink/7553d6dd-da65-4a72-84c8-81f2f99ef4f5 public static void DataToContract(CrudeFinancialPaymentData data, CrudeFinancialPaymentContract contract) { contract.FinancialPaymentId = data.FinancialPaymentId; contract.FinancialPaymentTypeRcd = data.FinancialPaymentTypeRcd; contract.FinancialPaymentCardId = data.FinancialPaymentCardId; contract.FinancialPaymentCashId = data.FinancialPaymentCashId; contract.FinancialPaymentVoucherId = data.FinancialPaymentVoucherId; contract.FinancialPaymentCouponId = data.FinancialPaymentCouponId; contract.FinancialPaymentBankId = data.FinancialPaymentBankId; contract.FinancialPaymentAccountingId = data.FinancialPaymentAccountingId; contract.UserId = data.UserId; contract.DateTime = data.DateTime; }
// transfer model object to data object // links: // docLink: http://sql2x.org/documentationLink/95875d99-b7f7-4a9e-baa4-3fbe9925d8a2 public static void ModelToData(CrudeFinancialPaymentModel model, CrudeFinancialPaymentData data) { data.FinancialPaymentId = model.FinancialPaymentId; data.FinancialPaymentTypeRcd = model.FinancialPaymentTypeRcd; data.FinancialPaymentCardId = model.FinancialPaymentCardId; data.FinancialPaymentCashId = model.FinancialPaymentCashId; data.FinancialPaymentVoucherId = model.FinancialPaymentVoucherId; data.FinancialPaymentCouponId = model.FinancialPaymentCouponId; data.FinancialPaymentBankId = model.FinancialPaymentBankId; data.FinancialPaymentAccountingId = model.FinancialPaymentAccountingId; data.UserId = model.UserId; data.DateTime = model.DateTime; }
// transfer data object to model object // links: // docLink: http://sql2x.org/documentationLink/43d57600-5ff5-4ef8-9330-123773d100d3 public static void DataToModel(CrudeFinancialPaymentData data, CrudeFinancialPaymentModel model) { model.FinancialPaymentId = data.FinancialPaymentId; model.FinancialPaymentTypeRcd = data.FinancialPaymentTypeRcd; model.FinancialPaymentCardId = data.FinancialPaymentCardId; model.FinancialPaymentCashId = data.FinancialPaymentCashId; model.FinancialPaymentVoucherId = data.FinancialPaymentVoucherId; model.FinancialPaymentCouponId = data.FinancialPaymentCouponId; model.FinancialPaymentBankId = data.FinancialPaymentBankId; model.FinancialPaymentAccountingId = data.FinancialPaymentAccountingId; model.UserId = data.UserId; model.DateTime = data.DateTime; }
// copy all columns from a SOAP Contract to a serialized data object // links: // docLink: http://sql2x.org/documentationLink/10700d38-2227-4021-be12-2f4f206f5dd9 public static void ContractToData(CrudeFinancialPaymentContract contract, CrudeFinancialPaymentData data) { data.FinancialPaymentId = contract.FinancialPaymentId; data.FinancialPaymentTypeRcd = contract.FinancialPaymentTypeRcd; data.FinancialPaymentCardId = contract.FinancialPaymentCardId; data.FinancialPaymentCashId = contract.FinancialPaymentCashId; data.FinancialPaymentVoucherId = contract.FinancialPaymentVoucherId; data.FinancialPaymentCouponId = contract.FinancialPaymentCouponId; data.FinancialPaymentBankId = contract.FinancialPaymentBankId; data.FinancialPaymentAccountingId = contract.FinancialPaymentAccountingId; data.UserId = contract.UserId; data.DateTime = contract.DateTime; }
// copy all rows from a List of serialized data objects in CrudeFinancialPaymentData to a List of SOAP Contracts // links: // docLink: http://sql2x.org/documentationLink/9204c68e-93b8-4c77-af3c-3181985ff75f public List <CrudeFinancialPaymentContract> FetchAll() { var list = new List <CrudeFinancialPaymentContract>(); List <CrudeFinancialPaymentData> dataList = CrudeFinancialPaymentData.FetchAll(); foreach (CrudeFinancialPaymentData crudeFinancialPayment in dataList) { var contract = new CrudeFinancialPaymentContract(); DataToContract(crudeFinancialPayment, contract); list.Add(contract); } return(list); }
// fetch all rows from table with an offset, and limit of rows // links: // docLink: http://sql2x.org/documentationLink/a87e5c54-b47e-4031-bc3b-837b4cf9f692 public List <CrudeFinancialPaymentModel> FetchAllWithLimitAndOffset(string limit, string offset) { var list = new List <CrudeFinancialPaymentModel>(); List <CrudeFinancialPaymentData> dataList = CrudeFinancialPaymentData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset)); foreach (CrudeFinancialPaymentData crudeFinancialPaymentBusiness in dataList) { var model = new CrudeFinancialPaymentModel(); DataToModel(crudeFinancialPaymentBusiness, model); list.Add(model); } return(list); }
// copy all rows from a List of serialized data objects in CrudeFinancialPaymentData to a List of SOAP Contracts // links: // docLink: http://sql2x.org/documentationLink/3d3e60c3-69e4-43d6-8bd5-14a67a6ecf58 public List <CrudeFinancialPaymentModel> FetchAll() { var list = new List <CrudeFinancialPaymentModel>(); List <CrudeFinancialPaymentData> dataList = CrudeFinancialPaymentData.FetchAll(); foreach (CrudeFinancialPaymentData crudeFinancialPaymentBusiness in dataList) { var model = new CrudeFinancialPaymentModel(); DataToModel(crudeFinancialPaymentBusiness, model); list.Add(model); } return(list); }
// copy all rows from a List of serialized data objects to a List of SOAP Contracts, // with a limit on number of returned rows and order by columns, starting at a specific row // links: // docLink: http://sql2x.org/documentationLink/3fe9f1b3-97b6-4f58-a0f2-adfcbd973bfc public List <CrudeFinancialPaymentContract> FetchAllWithLimitAndOffset(int limit, int offset) { var list = new List <CrudeFinancialPaymentContract>(); List <CrudeFinancialPaymentData> dataList = CrudeFinancialPaymentData.FetchAllWithLimitAndOffset(limit, offset); foreach (CrudeFinancialPaymentData crudeFinancialPayment in dataList) { var contract = new CrudeFinancialPaymentContract(); DataToContract(crudeFinancialPayment, contract); list.Add(contract); } return(list); }
// delete row // links: // docLink: http://sql2x.org/documentationLink/59823bf7-4ad8-4684-a48b-2abd49c607ee public void Delete(System.Guid financialPaymentId) { CrudeFinancialPaymentData.Delete(financialPaymentId); }
// fetch by Foreign key into new List of class instances // links: // docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e public List <CrudeFinancialPaymentContract> FetchByUserId(System.Guid userId) { return(DataListToContractList(CrudeFinancialPaymentData.FetchByUserId(userId))); }
// fetch by Foreign key into new List of class instances // links: // docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e public List <CrudeFinancialPaymentContract> FetchByFinancialPaymentTypeRcd(string financialPaymentTypeRcd) { return(DataListToContractList(CrudeFinancialPaymentData.FetchByFinancialPaymentTypeRcd(financialPaymentTypeRcd))); }
// get a count of rows in table // links: // docLink: http://sql2x.org/documentationLink/39677f9e-daee-45c6-9527-da98a0d7958d public int FetchAllCount() { return(CrudeFinancialPaymentData.FetchAllCount()); }
// fetch by Foreign key into new List of class instances // links: // docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e public List <CrudeFinancialPaymentContract> FetchByFinancialPaymentAccountingId(System.Guid financialPaymentAccountingId) { return(DataListToContractList(CrudeFinancialPaymentData.FetchByFinancialPaymentAccountingId(financialPaymentAccountingId))); }
// fetch by Search key into current object // links: // crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete // docLink: http://sql2x.org/documentationLink/87368fa6-b618-4f0c-acbb-1fc4e273bb2d // parameters: // FinancialPaymentTypeRcd: key of table CrudeFinancialPaymentData public List <CrudeFinancialPaymentModel> FetchByFinancialPaymentTypeRcd(string financialPaymentTypeRcd) { return(DataListToModelList(CrudeFinancialPaymentData.FetchByFinancialPaymentTypeRcd(financialPaymentTypeRcd))); }
// fetch by Search key into current object // links: // crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete // docLink: http://sql2x.org/documentationLink/87368fa6-b618-4f0c-acbb-1fc4e273bb2d // parameters: // FinancialPaymentVoucherId: key of table CrudeFinancialPaymentData public List <CrudeFinancialPaymentModel> FetchByFinancialPaymentVoucherId(System.Guid financialPaymentVoucherId) { return(DataListToModelList(CrudeFinancialPaymentData.FetchByFinancialPaymentVoucherId(financialPaymentVoucherId))); }
// fetch by Search key into current object // links: // crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete // docLink: http://sql2x.org/documentationLink/87368fa6-b618-4f0c-acbb-1fc4e273bb2d // parameters: // UserId: key of table CrudeFinancialPaymentData public List <CrudeFinancialPaymentModel> FetchByUserId(System.Guid userId) { return(DataListToModelList(CrudeFinancialPaymentData.FetchByUserId(userId))); }