38 lines
836 B
C#
38 lines
836 B
C#
using IOB_MAN8.Core.SDK;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Newtonsoft.Json;
|
|
using System.Globalization;
|
|
|
|
namespace IOB_MAN8.App.Components.Compo
|
|
{
|
|
public partial class ParamConfEdit
|
|
{
|
|
#region Public Properties
|
|
|
|
[Parameter]
|
|
public EventCallback<bool> EC_Changed { get; set; }
|
|
|
|
[Parameter]
|
|
public EventCallback<bool?> EC_Updated { get; set; }
|
|
|
|
[Parameter]
|
|
public dataConfTSVC MemAreaCurr
|
|
{
|
|
get => memArea;
|
|
set { memArea = value; }
|
|
}
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Protected Fields
|
|
|
|
protected dataConfTSVC memArea = new dataConfTSVC();
|
|
|
|
protected async void RaiseChange()
|
|
{
|
|
await EC_Updated.InvokeAsync(true);
|
|
}
|
|
|
|
#endregion Protected Fields
|
|
}
|
|
} |