Пример #1
0
        // 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, starting at a specific row
        // links:
        //  docLink: http://sql2x.org/documentationLink/3fe9f1b3-97b6-4f58-a0f2-adfcbd973bfc
        public List <CrudeFinancialPaymentTypeRefContract> FetchAllWithLimitAndOffset(int limit, int offset)
        {
            var list = new List <CrudeFinancialPaymentTypeRefContract>();
            List <CrudeFinancialPaymentTypeRefData> dataList = CrudeFinancialPaymentTypeRefData.FetchAllWithLimitAndOffset(limit, offset);

            foreach (CrudeFinancialPaymentTypeRefData crudeFinancialPaymentTypeRef in dataList)
            {
                var contract = new CrudeFinancialPaymentTypeRefContract();
                DataToContract(crudeFinancialPaymentTypeRef, contract);
                list.Add(contract);
            }

            return(list);
        }
Пример #2
0
        // fetch all rows from table with an offset, and limit of rows
        // links:
        //  docLink: http://sql2x.org/documentationLink/a87e5c54-b47e-4031-bc3b-837b4cf9f692
        public List <CrudeFinancialPaymentTypeRefModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeFinancialPaymentTypeRefModel>();
            List <CrudeFinancialPaymentTypeRefData> dataList = CrudeFinancialPaymentTypeRefData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeFinancialPaymentTypeRefData crudeFinancialPaymentTypeRefBusiness in dataList)
            {
                var model = new CrudeFinancialPaymentTypeRefModel();
                DataToModel(crudeFinancialPaymentTypeRefBusiness, model);
                list.Add(model);
            }

            return(list);
        }