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

SYNTHESE DES DONNEES

@foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.ANNEE) @Html.DisplayNameFor(model => model.CATEGORIE_PROFESSIONELLE) @Html.DisplayNameFor(model => model.STATUTS) @Html.DisplayNameFor(model => model.NOMBRE) @Html.DisplayNameFor(model => model.FACTURERECUES) @Html.DisplayNameFor(model => model.PARTASSURANCE)
@Html.DisplayFor(modelItem => item.ANNEE) @Html.DisplayFor(modelItem => item.CATEGORIE_PROFESSIONELLE) @Html.DisplayFor(modelItem => item.STATUTS) @Html.DisplayFor(modelItem => item.NOMBRE) @Html.DisplayFor(modelItem => item.FACTURERECUES) @Html.DisplayFor(modelItem => item.PARTASSURANCE) @Html.ActionLink("Edit", "Edit", new { id = item.ID }) | @Html.ActionLink("Details", "Details", new { id = item.ID }) | @Html.ActionLink("Delete", "Delete", new { id = item.ID })