Пример #1
0
 public InfoTimezoneCollection FetchAll()
 {
     InfoTimezoneCollection coll = new InfoTimezoneCollection();
     Query qry = new Query(InfoTimezone.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Пример #2
0
 public InfoTimezoneCollection FetchByQuery(Query qry)
 {
     InfoTimezoneCollection coll = new InfoTimezoneCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Пример #3
0
 public InfoTimezoneCollection FetchByID(object InfoTimezoneKey)
 {
     InfoTimezoneCollection coll = new InfoTimezoneCollection().Where("info_timezone_key", InfoTimezoneKey).Load();
     return coll;
 }