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

Etat recapitulatif trimestriel de la consommation de l'année @DateTime.Today.Year

TRIMESTRE 1 TRIMESTRE 2 TRIMESTRE 3 TRIMESTRE 4
CONSOMMATION GENERALE @ViewBag.trimestre1 @ViewBag.trimestre2 @ViewBag.trimestre3 @ViewBag.trimestre4

Etat Mensuelle de la consommation de l'année @DateTime.Today.Year

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