示例#1
0
        public RepositoryManager(string filepath)
        {
            FilePath    = filepath;
            jsonContext = new JsonContext(FilePath);

            Bookmarks = new Repository <Bookmark>(jsonContext);
        }
示例#2
0
 public Repository(JsonContext jsonContext)
 {
     JContext = jsonContext;
 }