Exemple #1
0
        public async Task <IHttpActionResult> GetRandom(int count, [ModelBinder] IEnumerable <PartOfSpeech> partsOfSpeech)
        {
            var words = await _uow.GetRandomWords(count, partsOfSpeech);

            return(Ok(words));
        }