Esempio n. 1
0
 public PublishSubEventQueryHandler(IEventDetailRepository eventDetailRepository, IFeaturedEventRepository featuredEventRepository)
 {
     _eventDetailRepository   = eventDetailRepository;
     _featuredEventRepository = featuredEventRepository;
 }
Esempio n. 2
0
 public FeaturedEventController(IFeaturedEventRepository featuredEventRepository, IEventRepository eventRepository)
 {
     _featuredEventRepository = featuredEventRepository;
     _eventRepository         = eventRepository;
 }