public LTestStatusCollection FetchByQuery(Query qry) { var coll = new LTestStatusCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public LTestStatusCollection FetchAll() { var coll = new LTestStatusCollection(); var qry = new Query(LTestStatus.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public LTestStatusCollection FetchByID(object TestStatusId) { LTestStatusCollection coll = new LTestStatusCollection().Where("TestStatus_ID", TestStatusId).Load(); return(coll); }