Ejemplo n.º 1
0
 public JsonResult List()
 {
     return(Json(BlogDAO.ListAll(), JsonRequestBehavior.AllowGet));
 }
Ejemplo n.º 2
0
        public ActionResult Index()
        {
            var model = blogDAO.ListAll();

            return(View(model));
        }