Exemplo n.º 1
0
 public static string GetBooleanString(this IDataGenerator dataGenerator, string trueValue, string falseValue)
 {
     return(dataGenerator.GetBoolean() ? trueValue : falseValue);
 }