예제 #1
0
 public PublishSubEventQueryHandler(IEventDetailRepository eventDetailRepository, IFeaturedEventRepository featuredEventRepository)
 {
     _eventDetailRepository   = eventDetailRepository;
     _featuredEventRepository = featuredEventRepository;
 }
예제 #2
0
 public FeaturedEventController(IFeaturedEventRepository featuredEventRepository, IEventRepository eventRepository)
 {
     _featuredEventRepository = featuredEventRepository;
     _eventRepository         = eventRepository;
 }