@using CanteenContracts.BindingModels; @model ReportBindingModel @{ ViewBag.Title = "Report"; }

Generate Report

@using (Html.BeginForm("Report", "Home", FormMethod.Post)) {
@Html.LabelFor(m => m.FileName) @Html.TextBoxFor(m => m.FileName)
@Html.LabelFor(m => m.DateAfter) @Html.TextBoxFor(m => m.DateAfter, new { type = "date" })
@Html.LabelFor(m => m.DateBefore) @Html.TextBoxFor(m => m.DateBefore, new { type = "date" })
}