Example #1
0
 public ActionResult Put(long id, [FromBody] JobInterview jobInterview)
 {
     try
     {
         _jobInterviewService.Update(id, jobInterview);
         return(Ok());
     }
     catch (Exception ex)
     {
         return(UnprocessableEntity(ex));
     }
 }