Exemplo n.º 1
0
 public ActionResult Edit(Guid id)
 {
     Category category = new CategoryAPI().get(id);
     return View(category);
 }
Exemplo n.º 2
0
 public ActionResult Index()
 {
     List<Category> categories = new CategoryAPI().get();
     return View(categories);
 }