public EventParticipantQueries(EventParticipantContext context) { _context = context; }
public EventParticipantMutations(EventParticipantContext context, IEventService template1EventService, IMapper mapper, IAuthorizationService authorizationService) : base(authorizationService) { _context = context ?? throw new ArgumentNullException(nameof(context));; _eventService = template1EventService ?? throw new ArgumentNullException(nameof(template1EventService)); _mapper = mapper; }
public SignUpEventSuccessEventConsumer(EventParticipantContext context) { _context = context; }