コード例 #1
0
 public ActionResult RemoveOwner(int id, int userId)
 {
     CurrentUserModel.ValidateProject(id);
     CurrentUserModel.RemoveProjectOwner(id, userId);
     return(RedirectToAction("Index", new { id = id }));
 }