예제 #1
0
 public TenantManager(ITenantDbManager tenantDbManager,
                      IFirewallRulesSQLHelper firewallRulesSQLHelper,
                      ICatalogRepository catalogRepository,
                      IStorePerRequestTenantData storePerRequestTenantData)
 {
     TenantDbManager           = tenantDbManager;
     FirewallRulesSQLHelper    = firewallRulesSQLHelper;
     CatalogRepository         = catalogRepository;
     StorePerRequestTenantData = storePerRequestTenantData;
 }
예제 #2
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ITenantDbManager tenantDbManager)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseHttpsRedirection();

            app.UseRouting();

            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
            });

            tenantDbManager.InitializeAndRegisterAllTenants().Wait();
        }