public EventSummariesController(IEventSummaryRepository eventSummaryRepository,
                                 IUserRepository userRepository,
                                 IEventRepository eventRepository)
 {
     this.eventSummaryRepository = eventSummaryRepository;
     this.userRepository         = userRepository;
     this.eventRepository        = eventRepository;
 }
Ejemplo n.º 2
0
 public StatsController(IEventRepository eventRepository, IEventSummaryRepository eventSummaryRepository)
 {
     this.eventRepository        = eventRepository;
     this.eventSummaryRepository = eventSummaryRepository;
 }