public async Task <int> Count(string path) { var words = await _fileProcessor.ReadWords(path); var count = _wordsProcessor.GetVowelsCount(words); return(count); }