예제 #1
0
        public IActionResult DeleteJobOffer(Guid id)
        {
            bool jobOfferExists = _jobOfferService.CheckIfJobOfferExists(id);

            if (!jobOfferExists)
            {
                return(NotFound());
            }

            _jobOfferService.DeleteJobOffer(id);

            return(NoContent());
        }