Beispiel #1
0
 public IList <PAEntity> QueryTop(string strFetch, int size)
 {
     return(PAEntityQueryHelper.RetriveTop <PAEntity>(strFetch, size));
 }
Beispiel #2
0
 public void QueryAll(string strFetch, Action <PAEntity> callBack)
 {
     PAEntityQueryHelper.RetriveAll <PAEntity>(strFetch, callBack);
 }
Beispiel #3
0
 public QueryResult <PAEntity> QueryByPage(string strFetch, int page, int pageSize)
 {
     return(PAEntityQueryHelper.RetrivePage <PAEntity>(strFetch, page, pageSize));
 }
Beispiel #4
0
 public PAEntity Query(string strFetch)
 {
     return(PAEntityQueryHelper.Retrive <PAEntity>(strFetch));
 }