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

SYNTHESE DES DONNEES

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