public static LinearTextComposer AppendLine(this LinearTextComposer textBuilder, ParametricTextComposer template, IParametricTextComposerValueSource parametersValues)
        {
            var text = template.GenerateText(parametersValues);

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

            return(textBuilder.AppendLine(text));
        }