public IActionResult DeleteJobOffer(Guid id) { bool jobOfferExists = _jobOfferService.CheckIfJobOfferExists(id); if (!jobOfferExists) { return(NotFound()); } _jobOfferService.DeleteJobOffer(id); return(NoContent()); }