public IActionResult MostUsedSkill()
        {
            try
            {
                var mostUsed = _skillsService.GetMostUsedSkill();

                return(Ok(mostUsed));
            }
            catch (Exception e)
            {
                return(StatusCode(StatusCodes.Status500InternalServerError, e));
            }
        }