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