Exemplo n.º 1
0
 public Templ(MemoryStream templateFile)
 {
     Builder = new TemplBuilder(templateFile);
 }
Exemplo n.º 2
0
 public Templ(string templatePath)
 {
     Builder = new TemplBuilder(templatePath);
 }
Exemplo n.º 3
0
 public Templ(byte[] templateFile)
 {
     Builder = new TemplBuilder(templateFile);
 }