コントローラーには次のものがあります。
public ActionResult CocktailLoungeBarAttendant()
{
return View();
}
[HttpPost]
public ActionResult cocktailLoungebarattendant(string name, string email, string phone)
{
return View();
}
public ActionResult merchandisecoordinator()
{
return View();
}
[HttpPost]
public ActionResult merchandisecoordinator(string name, string email, string phone)
{
return View();
}
これは 4 回しか発生しませんが、コードが 4 回繰り返されていることが気になります。
次に、パラメーターを取得して処理を行う BaseController があります。
protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
Post を廃止してActionResult
、ベースコントローラーに1つだけ言ってもらいたいです。
これは可能ですか?