Esempio n. 1
0
 public ActionResult DeleteJobOffer(int idJobOfferToDelete)
 {
     try
     {
         _jobOfferService.DeleteJobOfferById(idJobOfferToDelete);
         return(Ok());
     }
     catch (KeyNotFoundException)
     {
         return(NotFound());
     }
 }