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