Files
LeafWeb/Web/Controllers/LeafInputController.cs
T
2016-01-11 23:11:38 -05:00

19 lines
370 B
C#

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();
}
}
}