public GithubPushProcessor(string wwwrootPath)
 {
     _files = new FileStore(wwwrootPath);
 }
 public PostRepository(string basePath)
 {
     _baseBath = $@"{basePath}\posts";
     _files = new FileStore(_baseBath);
 }
Esempio n. 3
0
 public PostRepository(string basePath)
 {
     _files = new FileStore($@"{basePath}\posts");
 }
 public PostRepository(string basePath)
 {
     _files = new FileStore($@"{basePath}\posts");
 }
 public GithubPushProcessor(string wwwrootPath, GithubPushConfig config)
 {
     _files = new FileStore(wwwrootPath);
     _config = config;
 }