public FeelUserJourneyQueryHandler( IEventCategoryMappingRepository eventCategoryMappingRepository, IEventCategoryRepository eventCategory, ICountryRepository countryRepository, ICountryDescriptionRepository countryDescriptionRepository, ICityDescriptionRepository cityDescriptionRepository, IStateDescriptionRepository stateDescriptionRepository, ISubCategoryProvider subCategoryProvider, IPlaceProvider placeProvider, IDynamicSectionProvider dynamicSectionProvider, ILogger logger, IEventTicketAttributeRepository eventTicketAttributeRepository ) { _eventCategoryMappingRepository = eventCategoryMappingRepository; _eventCategory = eventCategory; _logger = logger; _eventTicketAttributeRepository = eventTicketAttributeRepository; _countryDescriptionRepository = countryDescriptionRepository; _cityDescriptionRepository = cityDescriptionRepository; _countryRepository = countryRepository; _subCategoryProvider = subCategoryProvider; _placeProvider = placeProvider; _dynamicSectionProvider = dynamicSectionProvider; _stateDescriptionRepository = stateDescriptionRepository; }
public DescriptionCommandHandler(ICountryRepository countryRepository, ICityDescriptionRepository cityDescriptionRepository, ICityRepository cityRepository, ICountryDescriptionRepository countryDescriptionRepository, IStateDescriptionRepository stateDescriptionRepository, IMediator mediator) : base(mediator) { _countryRepository = countryRepository; _cityDescriptionRepository = cityDescriptionRepository; _countryDescriptionRepository = countryDescriptionRepository; _cityRepository = cityRepository; _stateDescriptionRepository = stateDescriptionRepository; _mediator = mediator; }