public void GetEducation()
        {
            BLL.DataCenterBiz biz = new BLL.DataCenterBiz();
            var ls = biz.GetEducation(SysMessage.DefaultSelecting);

            BindToDDL(ddlEducation, ls);
        }
示例#2
0
        public void GetEducation(DropDownList dropdown)
        {
            var message = SysMessage.DefaultSelecting;

            BLL.DataCenterBiz biz = new BLL.DataCenterBiz();
            var ls = biz.GetEducation(message);

            BindToDDL(dropdown, ls);
        }
示例#3
0
        private void GetEducation()
        {
            var message = SysMessage.DefaultSelecting;

            BLL.DataCenterBiz biz = new BLL.DataCenterBiz();
            var ls = biz.GetEducation(message);

            BindToDDL(ddlEducation, ls);
        }