public FacJefeLaboratorioCollection FetchByQuery(Query qry) { FacJefeLaboratorioCollection coll = new FacJefeLaboratorioCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public FacJefeLaboratorioCollection FetchAll() { FacJefeLaboratorioCollection coll = new FacJefeLaboratorioCollection(); Query qry = new Query(FacJefeLaboratorio.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public FacJefeLaboratorioCollection FetchByID(object IdJefeLaboratorio) { FacJefeLaboratorioCollection coll = new FacJefeLaboratorioCollection().Where("idJefeLaboratorio", IdJefeLaboratorio).Load(); return(coll); }