@model IEnumerable @{ ViewBag.Title = "Etatdépensesmensfam"; Layout = "~/Views/Shared/_Layout.cshtml"; }

SYNTHESE DES DONNEES

@foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.ANNEE) @Html.DisplayNameFor(model => model.MOIS) @Html.DisplayNameFor(model => model.MONTANTVALIDER) @Html.DisplayNameFor(model => model.MONTANTORIGINE) @Html.DisplayNameFor(model => model.MONTANTLDF)
@Html.DisplayFor(modelItem => item.ANNEE) @Html.DisplayFor(modelItem => item.MOIS) @Html.DisplayFor(modelItem => item.MONTANTVALIDER) @Html.DisplayFor(modelItem => item.MONTANTORIGINE) @Html.DisplayFor(modelItem => item.MONTANTLDF)