コード例 #1
0
ファイル: PCController.cs プロジェクト: Phylanx/CST356
 public ActionResult Index(int userId)
 {
     ViewBag.TotalStorage = _serv.GetTotalStorage(userId);
     ViewBag.UserId       = userId;
     return(View(_serv.GetAllUserPCs(userId)));
 }