Exemplo n.º 1
0
        public DDeviceListCollection FetchByQuery(Query qry)
        {
            DDeviceListCollection coll = new DDeviceListCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public DDeviceListCollection FetchAll()
        {
            DDeviceListCollection coll = new DDeviceListCollection();
            Query qry = new Query(DDeviceList.Schema);

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