public ActionResult <bool> Delete(long id)
 {
     try
     {
         _jobApplicantService.Delete(id);
         return(Ok());
     }
     catch (Exception ex)
     {
         return(UnprocessableEntity(ex));
     }
 }