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