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; }
public ListQuery(SessionQuery query) : base(query.SessionKey) { }
public SessionQuery(SessionQuery query) { this.SessionKey = query.SessionKey; }