public async Task <IEnumerable <StadiumDTO> > GetAllAsync()
        {
            var stadiums = await _stadiumRepository.GetAllAsync();

            return(_mapper.Map <IEnumerable <StadiumDTO> >(stadiums));
        }