34 lines
750 B
C#
34 lines
750 B
C#
using Microsoft.AspNetCore.Components;
|
|
using MP.Data.Objects;
|
|
using MP.Data.Services;
|
|
|
|
namespace MP_TAB3.Components
|
|
{
|
|
public partial class IobInfoMan
|
|
{
|
|
#region Public Properties
|
|
|
|
[Parameter]
|
|
public string idxMacch { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Protected Properties
|
|
|
|
protected IOB_data infosIob { get; set; } = new IOB_data();
|
|
|
|
[Inject]
|
|
protected TabDataService TabSrv { get; set; } = null!;
|
|
|
|
#endregion Protected Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected override async Task OnParametersSetAsync()
|
|
{
|
|
infosIob = await TabSrv.IobInfo(idxMacch);
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |