private void GetLicenseType() { BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetConfigLicenseType(SysMessage.DefaultSelecting); BindToDDL(ddlLicenseType, ls.DataResponse.ToList()); }
private void SetLicenseType() { BLL.DataCenterBiz Dcbiz = new BLL.DataCenterBiz(); var res = Dcbiz.GetConfigLicenseType("ทั้งหมด").DataResponse; if (res != null) { BindToDDL(ddlLicenseType, res.ToList()); } }