public SchemaViewModel(ISchemasService schemasService, IItemsService itemsService)
        {
            this.schemasService = schemasService;
            this.itemsService   = itemsService;

            Load();
        }
 public StatisticsController(IAppsService apps, ISchemasService schemas, IRepository<CollectionStatistics> statistics, IApiStatsProvider stats)
 {
     this.apps = apps;
     this.stats = stats;
     this.schemas = schemas;
     this.statistics = statistics;
 }
 public SchemasController(ISchemasService schemasService, IAppsService apps, IApiManager apiManager)
 {
     this.schemasService = schemasService;
     this.apiManager = apiManager;
     this.apps = apps;
 }