RegistrationConfiguration
Represents the collected configuration options of a registration.
using System;
namespace Stashbox.Registration.Fluent
{
public class RegistrationConfiguration
{
public Type ServiceType { get; }
public Type ImplementationType { get; }
internal RegistrationContext Context { get; }
internal RegistrationConfiguration(Type serviceType, Type implementationType)
{
ServiceType = serviceType;
ImplementationType = implementationType;
Context = RegistrationContext.New();
}
}
}