Exemple #1
0
        public IActionResult Tags(string tag, int id)
        {
            var posts = _postsRepository.FindByTag(tag, id);

            return(View("Index", posts));
        }