Files
CPXV2/CPXV2 TRA JSON Recovery/SystemX.Product.CP.TRA/Interface/IChildControl.cs
2025-04-16 09:12:17 +09:00

32 lines
698 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SystemX.Product.TRA.UIControl;
using static SystemX.Product.ALIS.UI.View.ViewCfg;
namespace SystemX.Product.ALIS.Interface
{
public interface IChildController
{
void SetOverview();
void SetDetailOverview();
void SetHistoryView();
void SetSummaryView();
void CallDetailOverView();
void AnnounceContentsType(eContents GetType);
bool GetOverviewMergeState();
SelectedDataCollection GetSelectDataOverView(int nDataValue = int.MaxValue);
void SetNgHistView(eContents GetCallType);
}
}