Exemplo n.º 1
0
 public DashboardController(DistributedCache distributedCache, IMaintenanceModeManagerConfig config)
 {
     this.distributedCache = distributedCache ?? throw new ArgumentNullException(nameof(distributedCache));
     this.config           = config ?? throw new ArgumentNullException(nameof(config));
 }
 public MaintenanceModeManagerCacheRefresher(AppCaches appCaches, IMaintenanceModeManagerConfig config) : base(appCaches)
 {
     this.config = config ?? throw new ArgumentNullException(nameof(config));
 }