Files
2024-06-26 10:30:00 +09:00

25 lines
591 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static SystemX.Product.ALIS.UI.View.ViewCfg;
namespace SystemX.Product.ALIS.Interface
{
public interface IChildController
{
void CloseAllChildForm();
void CloseChildForm(eAppFunctionType SetType);
void SetObjectValue(object obj);
void GoToFindTestListFileFocus(int nTestListFileNo);
void GoToFindVariantFocus(int nVariantNo);
eAppFunctionType CurrentSelectFunctionType(eAppFunctionType SetType);
}
}