// 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 <CrudeFerryTypeRefModel> FetchWithFilter(string ferryTypeRcd, string ferryTypeName, string stateRcd, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeFerryTypeRefModel>();
            List <CrudeFerryTypeRefData> dataList = CrudeFerryTypeRefData.FetchWithFilter(ferryTypeRcd, ferryTypeName, stateRcd, userId, dateTime);

            foreach (CrudeFerryTypeRefData data in dataList)
            {
                var crudeFerryTypeRefBusinessModel = new CrudeFerryTypeRefModel();
                DataToModel(data, crudeFerryTypeRefBusinessModel);
                list.Add(crudeFerryTypeRefBusinessModel);
            }

            return(list);
        }
Esempio 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 <CrudeFerryTypeRefContract> FetchWithFilter(string ferryTypeRcd, string ferryTypeName, string stateRcd, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeFerryTypeRefContract>();
            List <CrudeFerryTypeRefData> dataList = CrudeFerryTypeRefData.FetchWithFilter(
                ferryTypeRcd: ferryTypeRcd,
                ferryTypeName: ferryTypeName,
                stateRcd: stateRcd,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeFerryTypeRefData data in dataList)
            {
                var crudeFerryTypeRefContract = new CrudeFerryTypeRefContract();
                DataToContract(data, crudeFerryTypeRefContract);
                list.Add(crudeFerryTypeRefContract);
            }

            return(list);
        }