Interface ITenantContextAccessor<TTenant>
This interface defines the minimum implementation of a tenant context accessor.
Namespace: Talegen.AspNetCore.Multitenant
Assembly: Talegen.AspNetCore.Multitenant.dll
Syntax
public interface ITenantContextAccessor<TTenant>
where TTenant : class, ITenant
Type Parameters
Name | Description |
---|---|
TTenant | The type of the tenant. |
Properties
| Improve this Doc View SourceTenantContext
Gets or sets the tenant context.
Declaration
ITenantContext<TTenant> TenantContext { get; set; }
Property Value
Type | Description |
---|---|
ITenantContext<TTenant> | The tenant context. |