Exemplo n.º 1
0
        public async Task <ActionResult> GetRandomAmountFromAll(int amount)
        {
            IReadOnlyList <EnglishTextModel> englishTexts = await _randomTextService.GetRandomAmountFromAllAsync(amount);

            var englishTextViewModels = _mapper.Map <IEnumerable <EnglishTextViewModel> >(englishTexts);

            return(Ok(englishTextViewModels));
        }