public CommitteeLibCollection FetchByQuery(Query qry) { CommitteeLibCollection coll = new CommitteeLibCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public CommitteeLibCollection FetchAll() { CommitteeLibCollection coll = new CommitteeLibCollection(); Query qry = new Query(CommitteeLib.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public CommitteeLibCollection FetchByID(object Id) { CommitteeLibCollection coll = new CommitteeLibCollection().Where("ID", Id).Load(); return(coll); }