Example #1
0
 public override void Save()
 {
     using (var service = new CandidatesServiceClient())
     {
         try
         {
             this.ViewModel.RecruitmentStage.Candidate = null;
             this.CurrentId = service.SaveRecriutmentStage(this.ViewModel.RecruitmentStage);
         }
         catch (Exception e)
         {
         }
     }
 }