Adding LeafInput

This commit is contained in:
2016-01-11 23:11:38 -05:00
parent df8256f09b
commit 79baded8b1
14 changed files with 153 additions and 8 deletions
+19
View File
@@ -0,0 +1,19 @@
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();
}
}
}