Taylohtio/GeneralApi/GeneralApi.Core/Services/ITemplateEngine.cs

12 lines
356 B
C#

using Taloyhtio.GeneralApi.Common;
using Taloyhtio.GeneralApi.Core.Common;
namespace Taloyhtio.GeneralApi.Core.Services
{
public interface ITemplateEngine
{
string Merge(string template, params Pair<string, object>[] args);
string Merge(string templateFileName, string templatePath, params Pair<string, object>[] args);
}
}