Exemplo n.º 1
0
 public EventsController(IEventsService eventService, INotificationsService notificationsService, ISportsService sportsService, IUserChallengesService challengeService, IVenueService venueService, IUnitOfWorkAsync unitOfWork)
 {
     _eventService         = eventService;
     _sportsService        = sportsService;
     _challengeService     = challengeService;
     _venueService         = venueService;
     _notificationsService = notificationsService;
     _unitOfWork           = unitOfWork;
 }
Exemplo n.º 2
0
 public UserChallengesController(IUserChallengesService service)
 {
     _service = service;
 }