コード例 #1
0
        public ActionResult JoinBoard(JoinPriorityListCommand command)
        {
            if (ModelState.IsValid)
            {

                return RedirectToAction("List", command);
            }
            return View();
        }
コード例 #2
0
        public ActionResult List(JoinPriorityListCommand command)
        {
            var board = repo.GetOrCreate(command.BoardName, command.UserName);

            return View(board);
        }