Ejemplo n.º 1
0
        public ActionResult Index(string message = "")
        {
            ViewBag.ErrorMessage = message;
            SetOfBookListModel model = new SetOfBookListModel();

            model.SetOfBooks = SetOfBookHelper.GetSetOfBooks();
            return(View(model));
        }
Ejemplo n.º 2
0
 public ActionResult SetOfBookPartial()
 {
     return(PartialView("_List", SetOfBookHelper.GetSetOfBooks()));
 }