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);
 }
Example #2
0
 public RandomValueFromListWithTarget(List <T> valueList, T targetValue, double targetValueMinPercent, int randomCount)
     : base(valueList)
 {
     TargetValue           = targetValue;
     RandomValueWithTarget = new RandomValueWithTarget(targetValueMinPercent, randomCount);
 }