// copy all rows from a List of serialized data objects to a List of SOAP Contracts,
        //  with a limit on number of returned rows and order by columns
        // links:
        //  docLink: http://sql2x.org/documentationLink/f23c4cd8-e941-4b3e-8fda-7b2ac6a399f7
        public List <CrudeProductGatherSourceContract> FetchAllWithLimit(int limit)
        {
            var list = new List <CrudeProductGatherSourceContract>();
            List <CrudeProductGatherSourceData> dataList = CrudeProductGatherSourceData.FetchAllWithLimit(limit);

            foreach (CrudeProductGatherSourceData crudeProductGatherSource in dataList)
            {
                var contract = new CrudeProductGatherSourceContract();
                DataToContract(crudeProductGatherSource, contract);
                list.Add(contract);
            }

            return(list);
        }