22 lines
555 B
C#
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);
|
|
}
|
|
}
|
|
} |