Exemplo n.º 1
0
        // fetch all from table into new List of class instances, filtered by any column
        // links:
        //  docLink: http://sql2x.org/documentationLink/db27658d-4d23-46d7-9970-7bbaef8634b0
        public List <CrudeServiceFerryModel> FetchWithFilter(System.Guid serviceFerryId, System.Guid ferryId, decimal amount, System.Guid financialCurrencyId, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeServiceFerryModel>();
            List <CrudeServiceFerryData> dataList = CrudeServiceFerryData.FetchWithFilter(serviceFerryId, ferryId, amount, financialCurrencyId, userId, dateTime);

            foreach (CrudeServiceFerryData data in dataList)
            {
                var crudeServiceFerryBusinessModel = new CrudeServiceFerryModel();
                DataToModel(data, crudeServiceFerryBusinessModel);
                list.Add(crudeServiceFerryBusinessModel);
            }

            return(list);
        }
Exemplo n.º 2
0
        // fetch all rows from table into new List of Contracts, filtered by any column
        // links:
        //  docLink: http://sql2x.org/documentationLink/ce01ef4a-5cd0-4e51-b211-9c0a15b791a0
        public List <CrudeServiceFerryContract> FetchWithFilter(System.Guid serviceFerryId, System.Guid ferryId, decimal amount, System.Guid financialCurrencyId, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeServiceFerryContract>();
            List <CrudeServiceFerryData> dataList = CrudeServiceFerryData.FetchWithFilter(
                serviceFerryId: serviceFerryId,
                ferryId: ferryId,
                amount: amount,
                financialCurrencyId: financialCurrencyId,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeServiceFerryData data in dataList)
            {
                var crudeServiceFerryContract = new CrudeServiceFerryContract();
                DataToContract(data, crudeServiceFerryContract);
                list.Add(crudeServiceFerryContract);
            }

            return(list);
        }