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