public IActionResult Delete([FromRoute] Guid id)
 {
     _skillService.DeleteById(id);
     return(Ok());
 }