using Core.Templates;
namespace Generator.Infrastructure.TemplateFiller;
public abstract class AbstractFiller
{
protected string Render;
protected ITemplate Template;
///
/// Fills the text extracted from the template file
///
public abstract void Fill();
///
/// Output the filled text in a file
///
///
public abstract void Write(string outputPath);
}