private void GetApplicantDetailDocumentType() { BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetDocumentType(SysMessage.DefaultSelecting); BindToDDL(ddlApplicantDocumentType, ls.ToList()); }
private void GetDocumentTypeLicense() { BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetDocumentType(SysMessage.DefaultSelecting); BindToDDL(ddlLicenseDocumentType, ls.ToList()); }
private void GetDocumentTypeGrid() { BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var res = biz.GetDocumentType(""); gvDocumentType.DataSource = res; gvDocumentType.DataBind(); }
private void GetAttachFilesType() { var message = SysMessage.DefaultSelecting; BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetDocumentType(message); this.MasterPage.AttachFileControl.DocumentTypes = ls; }
private void InitDocumentType() { var message = SysMessage.DefaultSelecting; BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetDocumentType(message); ucAttachFileControl1.DocumentTypes = ls.ToList(); }
public void GetAttachFilesAllType() { var message = SysMessage.DefaultSelecting; BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetDocumentType(message); this.ucAttachFileControl1.DocumentTypeAll = ls; }
private void GetAttachFilesType() { var message = SysMessage.DefaultSelecting; BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetDocumentType(message); BindToDDL(ddlTypeAttachment, ls); }
public void GetAttachFilesType() { var message = SysMessage.DefaultSelecting; BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetDocumentType(message); this.ucAttachLicense.DocumentTypes = ls; }
public void GetAttachFilesType() { //string memtype = UserProfile.MemberType.ToString(); //string funcid = Convert.ToString((int)DTO.DocFunction.REGISTER_FUNCTION); var message = SysMessage.DefaultSelecting; BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetDocumentType(message); this.ucAttachFileControl1.DocumentTypes = ls; }
public void GetAttachFilesType() { var message = SysMessage.DefaultSelecting; BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var ls = biz.GetDocumentType(message); //this.ucAttachFileControl1.DocumentTypes = ls; List <DTO.DataItem> newls = ls.Where(s => s.EXAM_DISCOUNT_STATUS == null && s.TRAIN_DISCOUNT_STATUS == null).ToList() .Union(ls.Where(s => s.EXAM_DISCOUNT_STATUS == "N" && s.TRAIN_DISCOUNT_STATUS == "N").ToList()).ToList().OrderBy(code => code.Id).ToList(); this.ucAttachFileControl1.DocumentTypes = newls; }