public IActionResult DeleteSkill(Guid id) { try { _skillsService.DeleteSkill(id); } catch (KeyNotFoundException) { return(NotFound()); } return(NoContent()); }