public BulkTotalRatingCreatedEventHandler(
     ITotalRatingRepository totalRatingRepository,
     IDemographicRepository demographicRepository,
     ISalesAreaRepository salesAreaRepository,
     IMapper mapper)
 {
     _totalRatingRepository = totalRatingRepository;
     _demographicRepository = demographicRepository;
     _salesAreaRepository   = salesAreaRepository;
     _mapper = mapper;
 }
Beispiel #2
0
 public BulkTotalRatingDeletedEventHandler(ITotalRatingRepository totalRatingRepository, ILoggerService logger)
 {
     _totalRatingRepository = totalRatingRepository;
     _logger = logger;
 }
 public TotalRatingResultChecker(ITestDataImporter testDataImporter, ITotalRatingRepository totalRatingRepository) : base(testDataImporter)
 {
     _totalRatingRepository = totalRatingRepository;
 }