mirror of https://github.com/abpframework/abp.git
91 changed files with 50 additions and 296 deletions
@ -1,13 +1,9 @@ |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Volo.Abp.Modularity; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace Volo.Abp.BackgroundJobs |
|||
{ |
|||
public class BackgroundJobsDomainSharedModule : AbpModule |
|||
{ |
|||
public override void ConfigureServices(ServiceConfigurationContext context) |
|||
{ |
|||
context.Services.AddAssemblyOf<BackgroundJobsDomainSharedModule>(); |
|||
} |
|||
|
|||
} |
|||
} |
|||
|
|||
@ -1,14 +1,10 @@ |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Volo.Abp.Modularity; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace Volo.Docs |
|||
{ |
|||
[DependsOn(typeof(DocsDomainSharedModule))] |
|||
public class DocsApplicationContractsModule : AbpModule |
|||
{ |
|||
public override void ConfigureServices(ServiceConfigurationContext context) |
|||
{ |
|||
context.Services.AddAssemblyOf<DocsApplicationContractsModule>(); |
|||
} |
|||
|
|||
} |
|||
} |
|||
|
|||
@ -1,13 +1,9 @@ |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Volo.Abp.Modularity; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace Volo.Abp.PermissionManagement |
|||
{ |
|||
public class AbpPermissionManagementDomainSharedModule : AbpModule |
|||
{ |
|||
public override void ConfigureServices(ServiceConfigurationContext context) |
|||
{ |
|||
context.Services.AddAssemblyOf<AbpPermissionManagementDomainSharedModule>(); |
|||
} |
|||
|
|||
} |
|||
} |
|||
|
|||
@ -1,13 +1,9 @@ |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Volo.Abp.Modularity; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace Volo.Abp.SettingManagement |
|||
{ |
|||
public class AbpSettingManagementDomainSharedModule : AbpModule |
|||
{ |
|||
public override void ConfigureServices(ServiceConfigurationContext context) |
|||
{ |
|||
context.Services.AddAssemblyOf<AbpSettingManagementDomainSharedModule>(); |
|||
} |
|||
|
|||
} |
|||
} |
|||
|
|||
@ -1,13 +1,9 @@ |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Volo.Abp.Modularity; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace Volo.Abp.Users |
|||
{ |
|||
public class AbpUsersDomainSharedModule : AbpModule |
|||
{ |
|||
public override void ConfigureServices(ServiceConfigurationContext context) |
|||
{ |
|||
context.Services.AddAssemblyOf<AbpUsersDomainSharedModule>(); |
|||
} |
|||
|
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue