public RandomValueFromDoubleRangeWithTarget(double valueFrom, double valueTo, int?valueDecimals, double targetValue, double targetValueMinPercent, int randomCount) : base(valueFrom, valueTo, valueDecimals) { TargetValue = targetValue; RandomValueWithTarget = new RandomValueWithTarget(targetValueMinPercent, randomCount); }
public RandomValueFromListWithTarget(List <T> valueList, T targetValue, double targetValueMinPercent, int randomCount) : base(valueList) { TargetValue = targetValue; RandomValueWithTarget = new RandomValueWithTarget(targetValueMinPercent, randomCount); }