// transfer serialized data contract to business wcf contract // links: // how to generate durians: https://sql2x.org // docLink: http://sql2x.org/documentationLink/6140089a-d7c9-4e92-b385-f6fd91026820 // parameters: // dalServiceFerryList: from durian ansi sql select statement // dataContract: business wcf contract public void DataToContract(ServiceFerryListData dalServiceFerryList, ServiceFerryListContract dataContract) { dataContract.FerryName = dalServiceFerryList.FerryName; dataContract.Amount = dalServiceFerryList.Amount; dataContract.FinancialCurrencyTypeName = dalServiceFerryList.FinancialCurrencyTypeName; dataContract.FerryId = dalServiceFerryList.FerryId; dataContract.ProductId = dalServiceFerryList.ProductId; dataContract.ServiceFerryId = dalServiceFerryList.ServiceFerryId; }
// transfer serialized data contract to business wcf contract // links: // how to generate durians: https://sql2x.org // docLink: http://sql2x.org/documentationLink/6a251e13-1f76-48af-af34-18c592706874 // parameters: // dataContract: from durian ansi sql select statement public List <ServiceFerryListContract> ServiceFerryListFromDal(List <ServiceFerryListData> dataList) { var list = new List <ServiceFerryListContract>(); foreach (ServiceFerryListData data in dataList) { var contract = new ServiceFerryListContract(); DataToContract(data, contract); list.Add(contract); } return(list); }