Exemple #1
0
 public LamarConfiguration(Lamar.ServiceRegistry register)
 {
     this.register = register;
 }
Exemple #2
0
 public Container(Action <ServiceRegistry> configuration) : this(ServiceRegistry.For(configuration))
 {
 }
Exemple #3
0
 public InstanceExpression(ServiceRegistry parent, ServiceLifetime?lifetime)
 {
     _parent   = parent;
     _lifetime = lifetime;
 }
Exemple #4
0
 public PoliciesExpression(ServiceRegistry parent)
 {
     _parent = parent;
 }
Exemple #5
0
 public DescriptorExpression(Type serviceType, ServiceRegistry parent)
 {
     _serviceType = serviceType;
     _parent      = parent;
 }