@model MALDFGASSURANCE.Models.REMBOURSEMENT @{ ViewBag.Title = "Create"; Layout = "~/Views/Shared/_Layout.cshtml"; }

Create

@using (Html.BeginForm()) { @Html.AntiForgeryToken()

REMBOURSEMENT


@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.NUMREBOURSEMENT, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.NUMREBOURSEMENT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.NUMREBOURSEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATEPAIEMENT, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.DATEPAIEMENT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DATEPAIEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.INFORMATION, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.INFORMATION, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.INFORMATION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PERIODE, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.PERIODE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.PERIODE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.TOTAL, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.TOTAL, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.TOTAL, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ETAT, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.ETAT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ETAT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATECREATION, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.DATECREATION, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DATECREATION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATEMODIFICATION, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.DATEMODIFICATION, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DATEMODIFICATION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.IDUTILISATEUR, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.IDUTILISATEUR, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.IDUTILISATEUR, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.TOTALREMBOURSER, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.TOTALREMBOURSER, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.TOTALREMBOURSER, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.IDTYPEPAIEMENT, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.IDTYPEPAIEMENT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.IDTYPEPAIEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.REFPAIEMENT, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.REFPAIEMENT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.REFPAIEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.NOMPAIEMENT, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.NOMPAIEMENT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.NOMPAIEMENT, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Index")