Exemple #1
0
 public void Load(TenantInformation currentTenant, GetCurrentLoginInformationsOutput loginInfo)
 {
     CurrentTenant = currentTenant;
     LoginInfo     = loginInfo;
 }
Exemple #2
0
        public void SetAsTenant([NotNull] string tenancyName, int tenantId)
        {
            Check.NotNull(tenancyName, nameof(tenancyName));

            CurrentTenant = new TenantInformation(tenancyName, tenantId);
        }