RegistrationConfigurator<TService>
public class RegistrationConfigurator<TService> : FluentServiceConfigurator<TService, RegistrationConfigurator<TService>>
Represents the generic fluent service registration api.
using System;
namespace Stashbox.Registration.Fluent
{
public class RegistrationConfigurator<TService> : FluentServiceConfigurator<TService, RegistrationConfigurator<TService>>
{
internal RegistrationConfigurator(Type serviceType, Type implementationType)
: base(serviceType, implementationType)
{
}
}
}