public ViewPager(IPagerTemplate tpl, string uri, int index, int record, int total, IDictionary<string, string> where) { m_Tpl = tpl; m_Uri = uri; m_Index = index; m_Record = record; m_Total = total; if (where != null) { InitWhere(where); } }
public ViewPager(IPagerTemplate tpl, string uri, int index, int record, int total) : this(tpl, uri, index, record, total, null) { }