Пример #1
0
 public HistogramController(IHistogramRepository repository, IUserEventRepository userEventRepository, IGenerate<Histogram> generateHistogram, IFeatureRepository featureRepository, IBackgroundJobClient backgroundJobClient)
 {
     this.repository = repository;
     this.userEventRepository = userEventRepository;
     this.generateHistogram = generateHistogram;
     this.featureRepository = featureRepository;
     this.backgroundJobClient = backgroundJobClient;
 }
Пример #2
0
 public HistogramEngine(IHistogramRepository histogramRepository)
 {
     _HistogramRepository = histogramRepository;
 }
Пример #3
0
 public HistogramController(IHistogramRepository histogramRepository)
 {
     _histogramRepository = histogramRepository;
 }
 public HistogramDataController(IHistogramRepository histogramRepository)
 {
     this.histogramRepository = histogramRepository;
 }