Example #1
0
 public override void Add()
 {
     using (var service = new CandidatesServiceClient())
     {
         try
         {
             this.CurrentId = service.AddSoftSkill(this.ViewModel.Candidate, this.ViewModel.SoftSkillsEvaluation, this.ViewModel.SoftSkillsEvaluation.SoftSkill.Name);
         }
         catch (Exception e)
         {
         }
     }
 }