@model HairCutQuery
@{
var paid = false;
if (Model.PaymentId!=null) {
if (Model.Regularisation!=null) {
if (Model.Regularisation.IsSuccess()) {
paid=true;
}
}
}
}
- @Html.DisplayNameFor(m=>m.Prestation)
- @Html.DisplayFor(m=>m.Prestation)
- @Html.DisplayNameFor(m=>m.PerformerProfile)
- @Html.DisplayFor(m=>m.PerformerProfile)
- @Html.DisplayNameFor(m=>m.EventDate)
- @Html.DisplayFor(m=>m.EventDate)
- @Html.DisplayNameFor(m=>m.Location)
- @Html.DisplayFor(m=>m.Location)
- @Html.DisplayNameFor(m=>m.AdditionalInfo)
- @Html.DisplayFor(m=>m.AdditionalInfo)
- @SR["La facture"]
- @await Component.InvokeAsync("Bill", "Brush", Model, OutputFormat.Html, true, paid )
- @Html.DisplayNameFor(m=>m.Regularisation)
-
@Component.Invoke("PayPalButton", Model, "haircut", "HairCutCommand" )