コード例 #1
0
ファイル: BTSController.cs プロジェクト: slaq777/lmsystem
 public ActionResult BugManagement(BugListViewModel model)
 {
     return View();
 }
コード例 #2
0
ファイル: BTSController.cs プロジェクト: slaq777/lmsystem
 public ActionResult BugManagement(int id)
 {
     _currentProjectId = id;
     var model = new BugListViewModel(id);
     return View(model);
 }