Exemple #1
0
 public ReportManager(
     ILog log,
     ISettings settings,
     IFileSystemProxy fileSystemProxy,
     IReportingServiceProxy reportingServiceProxy)
 {
     _log                   = log;
     _fileSystemProxy       = fileSystemProxy;
     _settings              = settings;
     _reportingServiceProxy = reportingServiceProxy;
 }
Exemple #2
0
 public Manager(
     ISettings settings,
     ISubscriptionManager subscriptionManager,
     ILog log,
     IReportManager reportManager,
     IReportingServiceProxy reportingServiceProxy)
 {
     _reportManager       = reportManager;
     _settings            = settings;
     _subscriptionManager = subscriptionManager;
     _log = log;
     _reportingServiceProxy = reportingServiceProxy;
 }
Exemple #3
0
 public SubscriptionManager(
     ILog log,
     IReportingServiceProxy client,
     ISubscriptionSettingsFactory subscriptionSettingsFactory,
     IFileSystemProxy fileSystem,
     ISettings settings)
 {
     _log        = log;
     _client     = client;
     _fileSystem = fileSystem;
     _settings   = settings;
     _subscriptionSettingsFactory = subscriptionSettingsFactory;
 }