32 lines
805 B
C#
32 lines
805 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.Services
|
|
{
|
|
public interface IApplicationContext
|
|
{
|
|
//[CanBeNull]
|
|
//TenantInformation CurrentTenant { get; }
|
|
|
|
//AbpUserConfigurationDto Configuration { get; set; }
|
|
|
|
//GetCurrentLoginInformationsOutput LoginInfo { get; }
|
|
|
|
//void ClearLoginInfo();
|
|
|
|
//void SetLoginInfo(GetCurrentLoginInformationsOutput loginInfo);
|
|
|
|
//void SetAsHost();
|
|
|
|
//void SetAsTenant(string tenancyName, int tenantId);
|
|
|
|
//LanguageInfo CurrentLanguage { get; set; }
|
|
|
|
//void Load(TenantInformation currentTenant, GetCurrentLoginInformationsOutput loginInfo);
|
|
}
|
|
}
|