Esempio n. 1
0
 public SysLocationCollection FetchAll()
 {
     SysLocationCollection coll = new SysLocationCollection();
     Query qry = new Query(SysLocation.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Esempio n. 2
0
 public SysLocationCollection FetchByQuery(Query qry)
 {
     SysLocationCollection coll = new SysLocationCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Esempio n. 3
0
 public SysLocationCollection FetchByID(object Id)
 {
     SysLocationCollection coll = new SysLocationCollection().Where("ID", Id).Load();
     return coll;
 }