Exemplo n.º 1
0
        public string Execute(IList <string> parameters)
        {
            var animalType = parameters[1];

            var posts = postService.SearchPostsByAnimalType(animalType);

            return(postService.PrintPostsToConsole(posts));
        }