Files
lux/Lux.UI/Components/Compo/Planner/WLB_Estimated.razor.cs
T
2026-01-12 19:20:04 +01:00

22 lines
555 B
C#

using EgwCoreLib.Lux.Data.DbModel.Sales;
using EgwCoreLib.Lux.Data.Services;
using Microsoft.AspNetCore.Components;
using static EgwCoreLib.Lux.Core.Enums;
namespace Lux.UI.Components.Compo.Planner
{
public partial class WLB_Estimated
{
[Parameter]
public List<OrderRowModel>? AllRecords { get; set; } = null;
[Parameter]
public EventCallback<int> EC_DoBalance { get; set; }
private async Task DoBalance(int OrderRowID)
{
await EC_DoBalance.InvokeAsync(OrderRowID);
}
}
}