Example #1
0
 public ActionResult Post([FromBody] JobInterview jobInterview)
 {
     try
     {
         _jobInterviewService.Insert(jobInterview);
         return(Ok());
     }
     catch (Exception ex)
     {
         return(UnprocessableEntity(ex));
     }
 }