@model MALDFGASSURANCE.Models.REMBOURSFACTURE @{ ViewBag.Title = "Create"; }

Create

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

REMBOURSFACTURE


@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.IDREMBOURSEMENT, "IDREMBOURSEMENT", htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownList("IDREMBOURSEMENT", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.IDREMBOURSEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.NUMERO_FACTURE, "NUMERO_FACTURE", htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownList("NUMERO_FACTURE", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.NUMERO_FACTURE, "", 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.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.TYPE, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.TYPE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.TYPE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.LIBELLETYPE, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.LIBELLETYPE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.LIBELLETYPE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.MONTRECLAMER, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.MONTRECLAMER, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.MONTRECLAMER, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.MONTNONREMB, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.MONTNONREMB, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.MONTNONREMB, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.BASEDECOMPTE, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.BASEDECOMPTE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.BASEDECOMPTE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.TAUX, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.TAUX, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.TAUX, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Index")