mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
592 B
21 lines
592 B
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Volo.Abp.Modularity
|
|
{
|
|
public class IndependentEmptyModule : AbpModule
|
|
{
|
|
public bool ConfigureServicesIsCalled { get; set; }
|
|
|
|
public bool OnApplicationInitializeIsCalled { get; set; }
|
|
|
|
public override void ConfigureServices(IServiceCollection services)
|
|
{
|
|
ConfigureServicesIsCalled = true;
|
|
}
|
|
|
|
public override void OnApplicationInitialization(ApplicationInitializationContext context)
|
|
{
|
|
OnApplicationInitializeIsCalled = true;
|
|
}
|
|
}
|
|
}
|
|
|