private static EsDocument GetFromJson() { return(EsGenerator.DeserializeDocument(ResourcesHelper.GetText("Resources.Model.json"))); }
private static void CreateFromJson(string filePath) { EsGenerator.Render(GetFromJson(), filePath); }
private static string GetDocSerialized() { EsDocument pd = GetDocument(); return(EsGenerator.SerializeDocument(pd)); }
private static void CreateDirect(string filePath) { EsGenerator.Render(GetDocument(), filePath); }