コード例 #1
0
 public NewBlogPostCommand(IBlogSettings blogSettings, IRandomIdGenerator randomIdGenerator, IFileSystem fileSystem, IClock clock)
 {
     this.fileSystem        = fileSystem;
     this.clock             = clock;
     this.randomIdGenerator = randomIdGenerator;
     this.blogSettings      = blogSettings;
 }
コード例 #2
0
 public SettingsApiController(IBlogSettings blogSettings)
 {
     this.blogSettings = blogSettings;
 }
コード例 #3
0
 public GoogleAccountService(IBlogSettings blogSettings)
 {
     this.blogSettings = blogSettings;
 }
コード例 #4
0
 public TemporaryImageHostCommand(IBlogSettings blogSettings, IFileSystem fileSystem, IRandomIdGenerator randomIdGenerator)
 {
     this.blogSettings      = blogSettings;
     this.fileSystem        = fileSystem;
     this.randomIdGenerator = randomIdGenerator;
 }
コード例 #5
0
 public GoogleDriveBlogBackupService(IBlogSettings blogSettings)
 {
     this.blogSettings = blogSettings;
 }
コード例 #6
0
 public GetBlogPostsCommand(IBlogSettings blogSettings, IFileSystem fileSystem)
 {
     this.blogSettings = blogSettings;
     this.fileSystem   = fileSystem;
 }
コード例 #7
0
 public PostBackupServiceFactory(IBlogSettings blogSettings)
 {
     this.blogSettings = blogSettings;
 }