Exemplo n.º 1
0
 private static Template ImportTemplate(ServiceContext svces, string filepath, string name, string alias, string text, ITemplate master = null)
 {
     var t = new Template(filepath, name, alias) { Content = text };
     if (master != null)
         t.SetMasterTemplate(master);
     svces.FileService.SaveTemplate(t);
     return t;
 }