public FileAppServiceRepository(string storePath)
 {
   pathResolver = new PathResolver(storePath);
 }
 public FileMediaRepository(string storePath, IAppServiceRepository svcRepo, IAtomEntryRepository entryRepo)
 {
   pathResolver = new PathResolver(storePath, svcRepo.GetService());
   atomEntryRepository = entryRepo;
 }
 public FileAtomEntryRepository(string storePath, IAppServiceRepository svcRepo)
 {
   pathResolver = new PathResolver(storePath, svcRepo.GetService());
 }
 public FileAppCategoriesRepository(string storePath, IAppServiceRepository svcRepo)
 {
   pathResolver = new PathResolver(storePath, svcRepo.GetService());
 }