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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public DDeviceListCollection FetchByID(object DeviceId)
        {
            DDeviceListCollection coll = new DDeviceListCollection().Where("Device_ID", DeviceId).Load();

            return(coll);
        }