Example #1
0
 private static EsDocument GetFromJson()
 {
     return(EsGenerator.DeserializeDocument(ResourcesHelper.GetText("Resources.Model.json")));
 }
Example #2
0
 private static void CreateFromJson(string filePath)
 {
     EsGenerator.Render(GetFromJson(), filePath);
 }
Example #3
0
        private static string GetDocSerialized()
        {
            EsDocument pd = GetDocument();

            return(EsGenerator.SerializeDocument(pd));
        }
Example #4
0
 private static void CreateDirect(string filePath)
 {
     EsGenerator.Render(GetDocument(), filePath);
 }