Example #1
0
    private void GetUserResumeInfo()
    {
        BLL.JobBLL bll             = new BLL.JobBLL();
        string     ResumeId        = ReStr("ResumeId");
        DataSet    ds              = bll.GetResumeInfoByResumeId(ResumeId);
        string     resumeJson      = JsonHelper.ToJsonNo1(ds.Tables[0]);
        string     resumeVsJobType = JsonHelper.ToJson(ds.Tables[1]);
        string     Education       = JsonHelper.ToJson(ds.Tables[2]);

        ReDict.Add("resumeJson", resumeJson);               //简历主体
        ReDict.Add("resumeVsJobTypeList", resumeVsJobType); //意向职位列表
        ReDict.Add("EducationList", Education);             //教育工作经历列表
        ReTrue();
    }