예제 #1
0
 internal static Resume LoadCore(BEncodedDictionary resumeData)
 {
     if (resumeData == null)
     {
         throw new ArgumentNullException("resumeData");
     }
     var resume = new Resume();
     resume.LoadInternal(resumeData);
     return resume;
 }
예제 #2
0
 private void OpenResume(string path)
 {
     if (string.IsNullOrEmpty(path))
     {
         return;
     }
     try
     {
         Resume resume = Resume.Load(this._selectedResume);
         this.Set(() => this.ResumeDataFilePath, ref this._resumeDataFilePath, path);
         this._resume = resume;
         this._resumeItems = resume.ResumeItems;
         this.UpdateLables();
         this.UpdateItems("All");
     }
     catch (Exception ex)
     {
         ShowError(ex);
     }
 }