public static List <VersionRecord> parse(string JBlob) { List <VersionRecord> versionList = new List <VersionRecord>(); versionList = Helper_JSON.FromJson <VersionRecord>(Helper_JSON.FixJsonArray(JBlob)).ToList(); return(versionList); }
public static List <ProjectRecord> Parse(string JBlob) { List <ProjectRecord> projectList = new List <ProjectRecord>(); projectList = Helper_JSON.FromJson <ProjectRecord>(Helper_JSON.FixJsonArray(JBlob)).ToList(); return(projectList); }
static public List <MarkUpRecord> parse(string JBlob) { List <MarkUpRecord> MarkupList = new List <MarkUpRecord>(); MarkupList = Helper_JSON.FromJson <MarkUpRecord>(Helper_JSON.FixJsonArray(JBlob)).ToList(); return(MarkupList); }