[성현모] TRA HEX 값 표기 수정

This commit is contained in:
SHM
2025-03-20 08:35:24 +09:00
parent b76569d02f
commit 773aa49a27
118 changed files with 172244 additions and 0 deletions

View File

@ -0,0 +1,31 @@
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);
}
}