コード例 #1
0
ファイル: noteController.cs プロジェクト: irachex/iFinance
 public ActionResult edit(int id)
 {
     Provider db = new Provider();
     Note m = db.getNoteById(id);
     return View(m);
 }