コード例 #1
0
        public SchemaViewModel(ISchemasService schemasService, IItemsService itemsService)
        {
            this.schemasService = schemasService;
            this.itemsService   = itemsService;

            Load();
        }
コード例 #2
0
 public StatisticsController(IAppsService apps, ISchemasService schemas, IRepository<CollectionStatistics> statistics, IApiStatsProvider stats)
 {
     this.apps = apps;
     this.stats = stats;
     this.schemas = schemas;
     this.statistics = statistics;
 }
コード例 #3
0
 public SchemasController(ISchemasService schemasService, IAppsService apps, IApiManager apiManager)
 {
     this.schemasService = schemasService;
     this.apiManager = apiManager;
     this.apps = apps;
 }