public List<Diary> LoadJSON(string path) { iDS ds = new DS_JSON(); var list = ds.Load(path); return list; }
public void SaveJSON(string path, List<Diary> par) { iDS ds = new DS_JSON(); ds.Save(path, par); }