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

            BindToDDL(ddlApplicantDocumentType, ls.ToList());
        }
Example #2
0
        private void GetDocumentTypeLicense()
        {
            BLL.DataCenterBiz biz = new BLL.DataCenterBiz();
            var ls = biz.GetDocumentType(SysMessage.DefaultSelecting);

            BindToDDL(ddlLicenseDocumentType, ls.ToList());
        }
Example #3
0
        private void GetDocumentTypeGrid()
        {
            BLL.DataCenterBiz biz = new BLL.DataCenterBiz();
            var res = biz.GetDocumentType("");

            gvDocumentType.DataSource = res;
            gvDocumentType.DataBind();
        }
Example #4
0
        private void GetAttachFilesType()
        {
            var message = SysMessage.DefaultSelecting;

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

            this.MasterPage.AttachFileControl.DocumentTypes = ls;
        }
Example #5
0
        private void InitDocumentType()
        {
            var message = SysMessage.DefaultSelecting;

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

            ucAttachFileControl1.DocumentTypes = ls.ToList();
        }
Example #6
0
        public void GetAttachFilesAllType()
        {
            var message = SysMessage.DefaultSelecting;

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

            this.ucAttachFileControl1.DocumentTypeAll = ls;
        }
Example #7
0
        private void GetAttachFilesType()
        {
            var message = SysMessage.DefaultSelecting;

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

            BindToDDL(ddlTypeAttachment, ls);
        }
Example #8
0
        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;
        }
Example #10
0
        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;
        }