Files
lux/Lux.UI/Components/Compo/OfferCheck.razor
T

21 lines
554 B
Plaintext

@using EgwCoreLib.Lux.Data.DbModel
@using EgwCoreLib.Lux.Data.DbModel.Sales
<div class="alert alert-warning text-center display-4">
display check finali
<button class="btn btn-sm btn-primary" title="Reset selezione" @onclick="DoCancel"><i class="fa-solid fa-arrow-rotate-right"></i></button>
</div>
@code {
[Parameter]
public OfferModel CurrRecord { get; set; } = null!;
[Parameter]
public EventCallback<bool> EC_Close { get; set; }
private async Task DoCancel()
{
await EC_Close.InvokeAsync(true);
}
}