Beispiel #1
0
 public ActionResult EditProfile(Profile profile)
 {
     try
     {
         _applicantService.EditProfile(profile);
         return(RedirectToAction("Details",
                                 new { id = profile.ApplicantId, Controller = "Applicant" }));
     }
     catch
     {
         return(View());
     }
 }