Example #1
0
        public override void Load()
        {
            using (var service = new CandidatesServiceClient())
            {
                try
                {
                    this.ViewModel.Candidate = service.GetCandidateBySoftSkillEvaluationId(this.CurrentId);

                    this.ViewModel.SoftSkillsEvaluation = this.ViewModel.Candidate.Evaluation.SoftSkillsEvaluation.Where(x => x.Id == this.CurrentId).First();
                }
                catch (Exception e)
                {
                }
            }
        }