mirror of https://github.com/abpframework/abp
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.
19 lines
593 B
19 lines
593 B
using System;
|
|
using System.Collections.Generic;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Volo.DependencyInjection
|
|
{
|
|
public class OnServiceExposingContext : IOnServiceExposingContext
|
|
{
|
|
public Type ImplementationType { get; }
|
|
|
|
public List<Type> ExposedTypes { get; }
|
|
|
|
public OnServiceExposingContext([NotNull] Type implementationType, List<Type> exposedTypes)
|
|
{
|
|
ImplementationType = Check.NotNull(implementationType, nameof(implementationType));
|
|
ExposedTypes = Check.NotNull(exposedTypes, nameof(exposedTypes));
|
|
}
|
|
}
|
|
} |