NullTenantStore.cs 277 B

123456789101112131415
  1. namespace Abp.MultiTenancy
  2. {
  3. public class NullTenantStore : ITenantStore
  4. {
  5. public TenantInfo Find(int tenantId)
  6. {
  7. return null;
  8. }
  9. public TenantInfo Find(string tenancyName)
  10. {
  11. return null;
  12. }
  13. }
  14. }