Пример #1
0
        private void initCmbTimePoint()
        {
            tmPntIdLst = new List <int>();
            BLL.time_point          tmPntBll  = new BLL.time_point();
            List <Model.time_point> tmPntList = new List <Model.time_point>();

            tmPntList = tmPntBll.GetModelList("");
            for (int i = 0; i < tmPntList.Count; i++)
            {
                cmbTimePoint.Items.Add(tmPntList[i].tpoint_value);
                tmPntIdLst.Add(tmPntList[i].tpoint_id);
            }
        }
Пример #2
0
 private void getAllList()
 {
     modelList = Bll.GetModelList("1=1 order by tpoint_id desc");
     loadList();
 }