mirror of https://github.com/abpframework/abp.git
1 changed files with 15 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||
using JetBrains.Annotations; |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
|
|||
namespace Volo.Abp.Modularity |
|||
{ |
|||
public class ServiceConfigurationContext |
|||
{ |
|||
public IServiceCollection Services { get; } |
|||
|
|||
public ServiceConfigurationContext([NotNull] IServiceCollection services) |
|||
{ |
|||
Services = Check.NotNull(services, nameof(services)); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue