public static LinearTextComposer Append(this LinearTextComposer textBuilder, ParametricTextComposer template, params object[] parametersValues)
        {
            var text = template.GenerateText(parametersValues);

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

            return(textBuilder.Append(text));
        }