@Html.LabelFor(model => model.ID_TYPE_PRESCRIPTION, "TYPE DE PRESCRIPTION", htmlAttributes: new { @class = "control-label " })
@Html.DropDownList("ID_TYPE_PRESCRIPTION", null, htmlAttributes: new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.ID_TYPE_PRESCRIPTION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.LIBELLE_ACTE,"ACTE", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.LIBELLE_ACTE, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.LIBELLE_ACTE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIX_NORMAL,"PRIX NORMAL", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.PRIX_NORMAL, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.PRIX_NORMAL, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIX_FERIE,"PRIX FERIE", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.PRIX_FERIE, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.PRIX_FERIE, "", new { @class = "text-danger" })