Interface ITenantStore
Assembly: Volo.Abp.MultiTenancy.dll
Syntax
public interface ITenantStore
Methods
Find(Guid)
Declaration
[Obsolete("Use FindAsync method.")]
TenantConfiguration Find(Guid id)
Parameters
| Type |
Name |
Description |
| System.Guid |
id |
|
Returns
Find(string)
Declaration
[Obsolete("Use FindAsync method.")]
TenantConfiguration Find(string name)
Parameters
| Type |
Name |
Description |
| string |
name |
|
Returns
FindAsync(Guid)
Declaration
Task<TenantConfiguration> FindAsync(Guid id)
Parameters
| Type |
Name |
Description |
| System.Guid |
id |
|
Returns
FindAsync(string)
Declaration
Task<TenantConfiguration> FindAsync(string name)
Parameters
| Type |
Name |
Description |
| string |
name |
|
Returns
Extension Methods