21 lines
556 B
Plaintext
21 lines
556 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_Cancel { get; set; }
|
|
|
|
private async Task DoCancel()
|
|
{
|
|
await EC_Cancel.InvokeAsync(true);
|
|
}
|
|
}
|