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

            foreach (CrudeFerryIdentifierTypeRefData crudeFerryIdentifierTypeRef in dataList)
            {
                var contract = new CrudeFerryIdentifierTypeRefContract();
                DataToContract(crudeFerryIdentifierTypeRef, contract);
                list.Add(contract);
            }

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

            foreach (CrudeFerryIdentifierTypeRefData crudeFerryIdentifierTypeRefBusiness in dataList)
            {
                var model = new CrudeFerryIdentifierTypeRefModel();
                DataToModel(crudeFerryIdentifierTypeRefBusiness, model);
                list.Add(model);
            }

            return(list);
        }