Ejemplo n.º 1
0
 // GET: Default/Wall
 public ActionResult Index(Guid id)
 {
     try
     {
         var model = new IndexViewData { Item = _wallService.GetDetails(id) };
         return View(model);
     }
     catch (Exception ex)
     {
         return HttpNotFound();
     }
 }