Ejemplo n.º 1
0
        public async Task <List <UserWord> > GetUserWords(string userId)
        {
            if (string.IsNullOrEmpty(userId))
            {
                throw new EmptyUserIdException();
            }

            return(await _learningRepository.GetUserWords(userId));
        }