// 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 <CrudeFinancialVoucherTypeRefContract> FetchAllWithLimit(int limit)
        {
            var list = new List <CrudeFinancialVoucherTypeRefContract>();
            List <CrudeFinancialVoucherTypeRefData> dataList = CrudeFinancialVoucherTypeRefData.FetchAllWithLimit(limit);

            foreach (CrudeFinancialVoucherTypeRefData crudeFinancialVoucherTypeRef in dataList)
            {
                var contract = new CrudeFinancialVoucherTypeRefContract();
                DataToContract(crudeFinancialVoucherTypeRef, contract);
                list.Add(contract);
            }

            return(list);
        }
Exemplo n.º 2
0
        // fetch all rows from table with a limit of rows
        // links:
        //  docLink: http://sql2x.org/documentationLink/6028cc89-271d-4e09-b157-d1016dcaf85e
        public List <CrudeFinancialVoucherTypeRefModel> FetchAllWithLimit(string limit)
        {
            var list = new List <CrudeFinancialVoucherTypeRefModel>();
            List <CrudeFinancialVoucherTypeRefData> dataList = CrudeFinancialVoucherTypeRefData.FetchAllWithLimit(int.Parse(limit));

            foreach (CrudeFinancialVoucherTypeRefData crudeFinancialVoucherTypeRefBusiness in dataList)
            {
                var model = new CrudeFinancialVoucherTypeRefModel();
                DataToModel(crudeFinancialVoucherTypeRefBusiness, model);
                list.Add(model);
            }

            return(list);
        }