Example #1
0
        private void GetLicenseType()
        {
            BLL.DataCenterBiz biz = new BLL.DataCenterBiz();
            var ls = biz.GetConfigLicenseType(SysMessage.DefaultSelecting);

            BindToDDL(ddlLicenseType, ls.DataResponse.ToList());
        }
Example #2
0
        private void SetLicenseType()
        {
            BLL.DataCenterBiz Dcbiz = new BLL.DataCenterBiz();
            var res = Dcbiz.GetConfigLicenseType("ทั้งหมด").DataResponse;

            if (res != null)
            {
                BindToDDL(ddlLicenseType, res.ToList());
            }
        }