Files
CPXV2/CPXV2 PTS/SystemX.Product.CP.PTS/Interface/IUserControlSubscribe.cs
2024-06-26 10:30:00 +09:00

22 lines
496 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static SystemX.Product.ALIS.UI.Commons;
namespace SystemX.Product.ALIS.Interface
{
interface IUserControlSubscribe
{
void SetLoginStateNotice(LoginAccessLevel CurrentAccessLevel, bool bLoginState);
void GoToFindTestListFileFocus(int nTestListFileNo);
void GoToFindVariantFocus(int nVariantNo);
void RefreshDataView();
}
}