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