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