Files
lux/Lux.UI/Components/Compo/Warehouse/MatReq2BuyOrder.razor.cs
T
2026-04-23 10:58:33 +02:00

19 lines
573 B
C#

using System.Security.Cryptography.Xml;
using static Lux.UI.Components.Compo.Warehouse.MatReqGroup;
namespace Lux.UI.Components.Compo.Warehouse
{
public partial class MatReq2BuyOrder
{
[Parameter]
public Dictionary<string, List<int>> CurrSelDict { get; set; } = null!;
[Parameter]
public EventCallback<KeyValuePair<string, List<int>>> EC_CreateBuyOrder { get; set; }
private Task CreateBuyOrder(KeyValuePair<string, List<int>> ReqInfo)
{
return EC_CreateBuyOrder.InvokeAsync(ReqInfo);
}
}
}