Esempio n. 1
0
        public UIController(ICommandBus commandBus, IOptions <MyUIOptions> uiOptions, IAppUISettings appUISettings)
            : base(commandBus)
        {
            this.uiOptions = uiOptions.Value;

            this.appUISettings = appUISettings;
        }
Esempio n. 2
0
        public BackupApps(IAppImageStore appImageStore, IAppsIndex appsIndex, IAppUISettings appUISettings)
        {
            Guard.NotNull(appImageStore, nameof(appImageStore));
            Guard.NotNull(appsIndex, nameof(appsIndex));
            Guard.NotNull(appUISettings, nameof(appUISettings));

            this.appsIndex     = appsIndex;
            this.appImageStore = appImageStore;
            this.appUISettings = appUISettings;
        }
Esempio n. 3
0
        public BackupApps(IAppUISettings appUISettings, IAppsIndex appsIndex, IUserResolver userResolver)
        {
            Guard.NotNull(appsIndex, nameof(appsIndex));
            Guard.NotNull(appUISettings, nameof(appUISettings));
            Guard.NotNull(userResolver, nameof(userResolver));

            this.appsIndex     = appsIndex;
            this.appUISettings = appUISettings;
            this.userResolver  = userResolver;
        }
Esempio n. 4
0
 public BackupApps(
     Rebuilder rebuilder,
     IAppImageStore appImageStore,
     IAppsIndex appsIndex,
     IAppUISettings appUISettings)
 {
     this.appsIndex     = appsIndex;
     this.rebuilder     = rebuilder;
     this.appImageStore = appImageStore;
     this.appUISettings = appUISettings;
 }
Esempio n. 5
0
 public BackupApps(IAppImageStore appImageStore, IAppsIndex appsIndex, IAppUISettings appUISettings)
 {
     this.appsIndex     = appsIndex;
     this.appImageStore = appImageStore;
     this.appUISettings = appUISettings;
 }