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

            foreach (CrudeExternalSystemData crudeExternalSystemBusiness in dataList)
            {
                var model = new CrudeExternalSystemModel();
                DataToModel(crudeExternalSystemBusiness, model);
                list.Add(model);
            }

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

            foreach (CrudeExternalSystemData crudeExternalSystem in dataList)
            {
                var contract = new CrudeExternalSystemContract();
                DataToContract(crudeExternalSystem, contract);
                list.Add(contract);
            }

            return(list);
        }