Example #1
0
 public DDevicePortCollection FetchAll()
 {
     DDevicePortCollection coll = new DDevicePortCollection();
     Query qry = new Query(DDevicePort.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #2
0
 public DDevicePortCollection FetchByQuery(Query qry)
 {
     DDevicePortCollection coll = new DDevicePortCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #3
0
 public DDevicePortCollection FetchByID(object PortId)
 {
     DDevicePortCollection coll = new DDevicePortCollection().Where("Port_ID", PortId).Load();
     return coll;
 }