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? AllRecords { get; set; } = null; [Parameter] public EventCallback EC_DoBalance { get; set; } private async Task DoBalance(int OrderRowID) { await EC_DoBalance.InvokeAsync(OrderRowID); } } }