コード例 #1
0
 public ListQuery(SessionQuery query, int pageIndex = 1, int pageSize = 25, string keywords = null)
     : base(query.SessionKey)
 {
     this.Keywords  = keywords;
     this.PageIndex = pageIndex;
     this.PageSize  = pageSize;
 }
コード例 #2
0
 public SessionQuery(SessionQuery query)
 {
     this.SessionKey = query.SessionKey;
 }
コード例 #3
0
 public ListQuery(SessionQuery query)
     : base(query.SessionKey)
 {
 }