Esempio n. 1
0
 public DataManager(
     IHeatMapRepository heatMapRepository,
     ICountingRepository countingRepository)
 {
     _heatMapRepository  = heatMapRepository;
     _countingRepository = countingRepository;
 }
Esempio n. 2
0
 public HeatMapBusiness(IHeatMapRepository heatMapRepository, ILogger logger)
 {
     _heatMapRepository = heatMapRepository;
     _logger            = logger;
 }