19 lines
370 B
C#
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();
|
|
}
|
|
}
|
|
} |