public ActionResult Edit(Guid id) { Author author = new AuthorAPI().get(id); return View(author); }
public ActionResult SearchByAuthor() { List<Author> authors = new AuthorAPI().get(); return View(authors); }
public ActionResult Index() { List<Author> authors = new AuthorAPI().get(); return View(authors); }