Exemplo n.º 1
0
		public ActionResult Redirect()
		{
			var getBlogPosts = new GetBlogPost(_blogService, _blogPostService);
			var allPosts = getBlogPosts.Initialize(true);

			return View();
		}
Exemplo n.º 2
0
        public ActionResult Redirect()
        {
            var getBlogPosts = new GetBlogPost(_blogService, _blogPostService);
            var allPosts     = getBlogPosts.Initialize(true);

            return(View());
        }
Exemplo n.º 3
0
		public ActionResult Index()
		{
			var getBlogPosts = new GetBlogPost(_blogService, _blogPostService);
			var allPosts = getBlogPosts.Initialize(false);

			return View();
		}
Exemplo n.º 4
0
        public ActionResult Index()
        {
            var getBlogPosts = new GetBlogPost(_blogService, _blogPostService);
            var allPosts     = getBlogPosts.Initialize(false);

            return(View());
        }