public FloatNullDecorator(IParameterCore <float> core) : base(core.Input) { this.core = core; }
public DoubleNullDecorator(IParameterCore <double> core) : base(core.Input) { this.core = core; }
public UIntNullDecorator(IParameterCore <uint> core) : base(core.Input) { this.core = core; }
public BooleanNullDecorator(IParameterCore <bool> core) : base(core.Input) { this.core = core; }
public ULongNullDecorator(IParameterCore <ulong> core) : base(core.Input) { this.core = core; }
public HexArrayNullDecorator(IParameterCore <byte[]> core) : base(core.Input) { this.core = core; }
public DecimalNullDecorator(IParameterCore <decimal> core) : base(core.Input) { this.core = core; }