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

AJOUTER PRESTATION

@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.REFFACTUREPHAR, "REFFACTUREPHAR", htmlAttributes: new { @class = "control-label " }) @Html.DropDownList("REFFACTUREPHAR", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.REFFACTUREPHAR, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.LIBELLE, htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.LIBELLE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.LIBELLE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.POSOLOGIE, htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.POSOLOGIE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.POSOLOGIE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.QUANTITE, htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.QUANTITE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.QUANTITE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIXUNITAITRE, htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.PRIXUNITAITRE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.PRIXUNITAITRE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIXVALIDE, htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.PRIXVALIDE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.PRIXVALIDE, "", new { @class = "text-danger" })
}