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