Files
2023-07-07 16:10:09 +02:00

38 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
using System.Net.Http;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.AspNetCore.Components.Forms;
using Microsoft.AspNetCore.Components.Routing;
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.Web.Virtualization;
using Microsoft.JSInterop;
using SHERPA.BBM.UI;
using SHERPA.BBM.UI.Shared;
using SHERPA.BBM.UI.Data;
using SHERPA.BBM.UI.Components;
using SHERPA.BBM.CORE.DbModels;
namespace SHERPA.BBM.UI.Components
{
public partial class BillReconc
{
[Parameter]
public OrderModel? CurrOrd { get; set; } = null;
private OrderModel? LastOrd { get; set; } = null;
protected override void OnParametersSet()
{
//if (CurrOrd != null && !CurrOrd.Equals(LastOrd))
//{
// LastOrd= CurrOrd.Clone();
//}
}
}
}