@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.HiddenFor(model => model.ID_PRESTATION)
@Html.LabelFor(model => model.ID_TYPEDEPRESTATION, "TYPE DE PRESTATION", htmlAttributes: new { @class = "control-label " })
@Html.DropDownList("ID_TYPEDEPRESTATION", null, htmlAttributes: new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.ID_TYPEDEPRESTATION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.CODE_ACTE, "CODE ACTE", htmlAttributes: new { @class = "control-label " })
@Html.DropDownList("CODE_ACTE", null, htmlAttributes: new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.CODE_ACTE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.NOMBRE_TRAITEMENT, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.NOMBRE_TRAITEMENT, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.NOMBRE_TRAITEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIX_UNITATIRE, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.PRIX_UNITATIRE, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.PRIX_UNITATIRE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATE_PRESTATION, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.DATE_PRESTATION, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.DATE_PRESTATION, "", new { @class = "text-danger" })