public IActionResult GetHobbies()
        {
            var model = _hobbyService.GetList().Data;

            return(Ok(model));
        }