public BulkStandardDayPartGroupCreatedEventHandler(
     IStandardDayPartGroupRepository standardDayPartGroupRepository,
     IStandardDayPartRepository standardDayPartRepository,
     ISalesAreaRepository salesAreaRepository,
     IDemographicRepository demographicRepository,
     IMapper mapper)
 {
     _standardDayPartGroupRepository = standardDayPartGroupRepository;
     _standardDayPartRepository      = standardDayPartRepository;
     _salesAreaRepository            = salesAreaRepository;
     _demographicRepository          = demographicRepository;
     _mapper = mapper;
 }
 public StandardDayPartGroupResultChecker(ITestDataImporter testDataImporter, IStandardDayPartGroupRepository standardDayPartGroupRepository) : base(testDataImporter)
 {
     _standardDayPartGroupRepository = standardDayPartGroupRepository;
 }
Пример #3
0
 public BulkStandardDayPartGroupDeletedEventHandler(IStandardDayPartGroupRepository standardDayPartGroupRepository)
 {
     _standardDayPartGroupRepository = standardDayPartGroupRepository;
 }