Esempio n. 1
0
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeFinancialPaymentCouponContract> FetchByFinancialCouponId(System.Guid financialCouponId)
 {
     return(DataListToContractList(CrudeFinancialPaymentCouponData.FetchByFinancialCouponId(financialCouponId)));
 }
 // 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:
 //  FinancialCouponId: key of table CrudeFinancialPaymentCouponData
 public List <CrudeFinancialPaymentCouponModel> FetchByFinancialCouponId(System.Guid financialCouponId)
 {
     return(DataListToModelList(CrudeFinancialPaymentCouponData.FetchByFinancialCouponId(financialCouponId)));
 }