public BackupAttributeService( ILogPathService logPathService, ILocalPathService localPathService ) { this.logPathService = logPathService; this.localPathService = localPathService; }
private LogFileService CreateDefaultLogFileService(ILogPathService logPathService) { return(new LogFileService( mockLoggerService.Object, logPathService, mockBackupAttributeService.Object )); }
public LogUploadService( ILoggerService loggerService, ILogPathService logPathService, IStorageService storageService) { this.loggerService = loggerService; this.logPathService = logPathService; this.storageService = storageService; }
public LogFileService( ILoggerService loggerService, ILogPathService logPathService, IBackupAttributeService backupAttributeService ) { this.loggerService = loggerService; this.logPathService = logPathService; this.backupAttributeService = backupAttributeService; }
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; }
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; }
public LoggerService(ILogPathService logPathService, IEssentialsService essentialsService) { this.logPathService = logPathService; this.essentialsService = essentialsService; }
private LoggerService CreateDefaultLoggerService(ILogPathService logPathService, IEssentialsService essentialsService) { return(new LoggerService(logPathService, essentialsService)); }
private LogFileService CreateDefaultLogFileService(ILogPathService logPathService) { return(new LogFileService(mockLoggerService.Object, logPathService)); }
public LogFileService(ILoggerService loggerService, ILogPathService logPathService) { this.loggerService = loggerService; this.logPathService = logPathService; }