Exemple #1
0
        public DDevicePortCollection FetchByQuery(Query qry)
        {
            var coll = new DDevicePortCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public DDevicePortCollection FetchAll()
        {
            var coll = new DDevicePortCollection();
            var qry  = new Query(DDevicePort.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public DDevicePortCollection FetchByID(object PortId)
        {
            DDevicePortCollection coll = new DDevicePortCollection().Where("Port_ID", PortId).Load();

            return(coll);
        }