public ActionResult <DetailResponse <AthleteResponse> > CreateAthlete(AthleteRequest athlete)
        {
            var athleteDto = _athleteService.CreateAthlete(athlete);

            return(Created("CreateUser",
                           new DetailResponse <AthleteResponse>
            {
                Status = 201,
                Detail = ConvertToAthleteResponse(athleteDto)
            }));
        }