예제 #1
0
 public ActionResult GetAllBlogPosts()
 {
     BlogPostBusinessService bpBS = new BlogPostBusinessService();
     BlogPostViewModel bpVM = bpBS.DisplayAllBlogPosts();
     return Json(bpVM);
 }
예제 #2
0
        //
        // GET: /Blog/

        public ActionResult Index()
        {
            BlogPostBusinessService bpBS = new BlogPostBusinessService();
            BlogPostViewModel bpVM = bpBS.DisplayAllBlogPosts();
            return View("Index", bpVM);
        }