示例#1
0
        // copy all rows from a List of serialized data objects in CrudeFlightIdentifierTypeRefData to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/3d3e60c3-69e4-43d6-8bd5-14a67a6ecf58
        public List <CrudeFlightIdentifierTypeRefModel> FetchAll()
        {
            var list = new List <CrudeFlightIdentifierTypeRefModel>();
            List <CrudeFlightIdentifierTypeRefData> dataList = CrudeFlightIdentifierTypeRefData.FetchAll();

            foreach (CrudeFlightIdentifierTypeRefData crudeFlightIdentifierTypeRefBusiness in dataList)
            {
                var model = new CrudeFlightIdentifierTypeRefModel();
                DataToModel(crudeFlightIdentifierTypeRefBusiness, model);
                list.Add(model);
            }

            return(list);
        }
示例#2
0
        // copy all rows from a List of serialized data objects in CrudeFlightIdentifierTypeRefData to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/9204c68e-93b8-4c77-af3c-3181985ff75f
        public List <CrudeFlightIdentifierTypeRefContract> FetchAll()
        {
            var list = new List <CrudeFlightIdentifierTypeRefContract>();
            List <CrudeFlightIdentifierTypeRefData> dataList = CrudeFlightIdentifierTypeRefData.FetchAll();

            foreach (CrudeFlightIdentifierTypeRefData crudeFlightIdentifierTypeRef in dataList)
            {
                var contract = new CrudeFlightIdentifierTypeRefContract();
                DataToContract(crudeFlightIdentifierTypeRef, contract);
                list.Add(contract);
            }

            return(list);
        }