コード例 #1
0
 public BackupAttributeService(
     ILogPathService logPathService,
     ILocalPathService localPathService
     )
 {
     this.logPathService   = logPathService;
     this.localPathService = localPathService;
 }
コード例 #2
0
 private LogFileService CreateDefaultLogFileService(ILogPathService logPathService)
 {
     return(new LogFileService(
                mockLoggerService.Object,
                logPathService,
                mockBackupAttributeService.Object
                ));
 }
コード例 #3
0
ファイル: LogUploadService.cs プロジェクト: cocoa-mhlw/cocoa
 public LogUploadService(
     ILoggerService loggerService,
     ILogPathService logPathService,
     IStorageService storageService)
 {
     this.loggerService  = loggerService;
     this.logPathService = logPathService;
     this.storageService = storageService;
 }
コード例 #4
0
 public LogFileService(
     ILoggerService loggerService,
     ILogPathService logPathService,
     IBackupAttributeService backupAttributeService
     )
 {
     this.loggerService          = loggerService;
     this.logPathService         = logPathService;
     this.backupAttributeService = backupAttributeService;
 }
コード例 #5
0
 public SendLogConfirmationPageViewModel(
     INavigationService navigationService,
     ILogFileService logFileService,
     ILoggerService loggerService,
     ILogUploadService logUploadService,
     ILogPathService logPathService) : base(navigationService)
 {
     this.loggerService    = loggerService;
     this.logFileService   = logFileService;
     this.logUploadService = logUploadService;
     this.logPathService   = logPathService;
 }
コード例 #6
0
 public InqueryPageViewModel(
     INavigationService navigationService,
     ILoggerService loggerService,
     ILogFileService logFileService,
     ILogPathService logPathService,
     IEssentialsService essentialsService
     ) : base(navigationService)
 {
     Title = AppResources.InqueryPageTitle;
     this.loggerService     = loggerService;
     this.logFileService    = logFileService;
     this.logPathService    = logPathService;
     this.essentialsService = essentialsService;
 }
コード例 #7
0
 public LoggerService(ILogPathService logPathService, IEssentialsService essentialsService)
 {
     this.logPathService    = logPathService;
     this.essentialsService = essentialsService;
 }
コード例 #8
0
 private LoggerService CreateDefaultLoggerService(ILogPathService logPathService, IEssentialsService essentialsService)
 {
     return(new LoggerService(logPathService, essentialsService));
 }
コード例 #9
0
 private LogFileService CreateDefaultLogFileService(ILogPathService logPathService)
 {
     return(new LogFileService(mockLoggerService.Object, logPathService));
 }
コード例 #10
0
 public LogFileService(ILoggerService loggerService, ILogPathService logPathService)
 {
     this.loggerService  = loggerService;
     this.logPathService = logPathService;
 }