Example #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 <CrudeBookingEventTypeRefModel> FetchWithFilter(string bookingEventTypeRcd, string bookingEventTypeName, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeBookingEventTypeRefModel>();
            List <CrudeBookingEventTypeRefData> dataList = CrudeBookingEventTypeRefData.FetchWithFilter(bookingEventTypeRcd, bookingEventTypeName, userId, dateTime);

            foreach (CrudeBookingEventTypeRefData data in dataList)
            {
                var crudeBookingEventTypeRefBusinessModel = new CrudeBookingEventTypeRefModel();
                DataToModel(data, crudeBookingEventTypeRefBusinessModel);
                list.Add(crudeBookingEventTypeRefBusinessModel);
            }

            return(list);
        }
        // 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 <CrudeBookingEventTypeRefContract> FetchWithFilter(string bookingEventTypeRcd, string bookingEventTypeName, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeBookingEventTypeRefContract>();
            List <CrudeBookingEventTypeRefData> dataList = CrudeBookingEventTypeRefData.FetchWithFilter(
                bookingEventTypeRcd: bookingEventTypeRcd,
                bookingEventTypeName: bookingEventTypeName,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeBookingEventTypeRefData data in dataList)
            {
                var crudeBookingEventTypeRefContract = new CrudeBookingEventTypeRefContract();
                DataToContract(data, crudeBookingEventTypeRefContract);
                list.Add(crudeBookingEventTypeRefContract);
            }

            return(list);
        }