Beispiel #1
0
 public clsCtl_LimitTimeMaitain()
 {
     //
     // TODO: 在此处添加构造函数逻辑
     //
     m_objManage = new clsDcl_LimitTimeMaitain();
 }
Beispiel #2
0
        void init()
        {
            m_objManage = new clsDcl_LimitTimeMaitain();

            DataTable dtbResult;

            dicGroup = new Dictionary <string, string>();
            m_objManage.lngGetAllCheckSpec(out dtbResult);

            for (int i = 0; i < dtbResult.Rows.Count; i++)
            {
                this.cbxGroup.Items.Add(dtbResult.Rows[i]["check_category_desc_vchr"].ToString());
                dicGroup.Add(dtbResult.Rows[i]["check_category_id_chr"].ToString(), dtbResult.Rows[i]["check_category_desc_vchr"].ToString());
            }

            m_mthListCheckItem();
        }