using System.Web.Mvc; using LeafWeb.Web.ViewModels.LeafInput; namespace LeafWeb.Web.Controllers { public class LeafInputController : Controller { public ActionResult Index() { return View(); } [HttpPost] public ActionResult Index(CreateViewModel viewModel) { return View(); } } }