Exemplo n.º 1
0
 protected FactoryBase([Required] ISpecification <TParameter> specification, [Required] IFactoryParameterCoercer <TParameter> coercer)
 {
     this.specification = specification;
     this.coercer       = coercer;
 }
Exemplo n.º 2
0
 protected FactoryBase([Required] IFactoryParameterCoercer <TParameter> coercer) : this(FactoryDefaults <TParameter> .Always, coercer)
 {
 }