IIwbDbMigrator.cs 183 B

123456789
  1. namespace IwbZero.MultiTenancy
  2. {
  3. public interface IIwbDbMigrator
  4. {
  5. void CreateOrMigrateForHost();
  6. void CreateOrMigrateForTenant(TenantBase tenant);
  7. }
  8. }