public async Task <List <SpeechDTO> > GetAllSpeechesAsync()
        {
            var speeches = await _speechService.GetAllAsync();

            return(_mapper.Map <List <Speech>, List <SpeechDTO> >(speeches));
        }