Esempio n. 1
0
        public BlogBuilder(BlogOptions options, string rootPath)
        {
            RootPath = rootPath;

            Options = options;

            FsBuilder = new FSBuilder(rootPath);
        }
Esempio n. 2
0
        public PostRepositoryBuilder(IList <Post> data, string rootPath)
        {
            RootPath = rootPath;

            Data = data;

            FsBuilder = new FSBuilder(rootPath);
        }