コード例 #1
0
 public ActionResult Edit(Guid id)
 {
     Author author = new AuthorAPI().get(id);
     return View(author);
 }
コード例 #2
0
 public ActionResult SearchByAuthor()
 {
     List<Author> authors = new AuthorAPI().get();
     return View(authors);
 }
コード例 #3
0
 public ActionResult Index()
 {
     List<Author> authors = new AuthorAPI().get();
     return View(authors);
 }