Пример #1
0
 protected FactoryBase([Required] ISpecification <TParameter> specification, [Required] IFactoryParameterCoercer <TParameter> coercer)
 {
     this.specification = specification;
     this.coercer       = coercer;
 }
Пример #2
0
 protected FactoryBase([Required] IFactoryParameterCoercer <TParameter> coercer) : this(FactoryDefaults <TParameter> .Always, coercer)
 {
 }