Пример #1
0
        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);
            }
        }
Пример #2
0
 public ViewPager(IPagerTemplate tpl, string uri, int index, int record, int total)
     : this(tpl, uri, index, record, total, null)
 {
 }