public InfoTimezoneCollection FetchAll() { InfoTimezoneCollection coll = new InfoTimezoneCollection(); Query qry = new Query(InfoTimezone.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }
public InfoTimezoneCollection FetchByQuery(Query qry) { InfoTimezoneCollection coll = new InfoTimezoneCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }