Пример #1
0
        public LocationCollection FetchByQuery(Query qry)
        {
            LocationCollection coll = new LocationCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #2
0
        public LocationCollection FetchAll()
        {
            LocationCollection coll = new LocationCollection();
            Query qry = new Query(Location.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }