public BdsHematologiumCollection FetchByQuery(Query qry) { BdsHematologiumCollection coll = new BdsHematologiumCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public BdsHematologiumCollection FetchAll() { BdsHematologiumCollection coll = new BdsHematologiumCollection(); Query qry = new Query(BdsHematologium.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public BdsHematologiumCollection FetchByID(object IdHematologia) { BdsHematologiumCollection coll = new BdsHematologiumCollection().Where("idHematologia", IdHematologia).Load(); return(coll); }