public EventSummariesController(IEventSummaryRepository eventSummaryRepository, IUserRepository userRepository, IEventRepository eventRepository) { this.eventSummaryRepository = eventSummaryRepository; this.userRepository = userRepository; this.eventRepository = eventRepository; }
public StatsController(IEventRepository eventRepository, IEventSummaryRepository eventSummaryRepository) { this.eventRepository = eventRepository; this.eventSummaryRepository = eventSummaryRepository; }