Browse Source
Merge pull request #24333 from abpframework/maliming-patch-2
[BackgroundJobs.DemoApp] Add dependency on `AbpMultiTenancyModule`
pull/24337/head
Engincan VESKE
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
0 deletions
-
modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Shared/DemoAppSharedModule.cs
|
|
|
@ -1,9 +1,11 @@ |
|
|
|
using Microsoft.Extensions.DependencyInjection; |
|
|
|
using Volo.Abp.BackgroundJobs.DemoApp.Shared.Jobs; |
|
|
|
using Volo.Abp.Modularity; |
|
|
|
using Volo.Abp.MultiTenancy; |
|
|
|
|
|
|
|
namespace Volo.Abp.BackgroundJobs.DemoApp.Shared |
|
|
|
{ |
|
|
|
[DependsOn(typeof(AbpMultiTenancyModule))] |
|
|
|
public class DemoAppSharedModule : AbpModule |
|
|
|
{ |
|
|
|
public override void OnPostApplicationInitialization(ApplicationInitializationContext context) |
|
|
|
|