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

            foreach (CrudeTimezoneData crudeTimezoneBusiness in dataList)
            {
                var model = new CrudeTimezoneModel();
                DataToModel(crudeTimezoneBusiness, model);
                list.Add(model);
            }

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

            foreach (CrudeTimezoneData crudeTimezone in dataList)
            {
                var contract = new CrudeTimezoneContract();
                DataToContract(crudeTimezone, contract);
                list.Add(contract);
            }

            return(list);
        }