Example #1
0
 public ActionResult Delete(long id)
 {
     try
     {
         _jobInterviewService.Delete(id);
         return(Ok());
     }
     catch (Exception ex)
     {
         return(UnprocessableEntity(ex));
     }
 }