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