public IActionResult Delete(int id)
 {
     _repository.DeleteSkills(id);
     return(Ok());
 }