Beispiel #1
0
 public Task <TTenant> FindByIdAsync(string id)
 {
     return(_store.FindByIdAsync(id));
 }
Beispiel #2
0
 public virtual async Task <TTenant> FindByIdAsync(string tenantId)
 {
     ThrowIfDisposed();
     return(await _tenantStore.FindByIdAsync(tenantId, CancellationToken));
 }