public static LinearComposer AppendLine(this LinearComposer textBuilder, ParametricComposer template, IParametericComposerValueSource parametersValues) { var text = template.GenerateText(parametersValues); return(textBuilder.AppendLine(text)); }
public static LinearComposer AppendLine(this LinearComposer textBuilder, ParametricComposer template, IDictionary <string, string> parametersValues) { var text = template.GenerateText(parametersValues); return(textBuilder.AppendLine(text)); }