示例#1
0
 public EventParticipantQueries(EventParticipantContext context)
 {
     _context = context;
 }
示例#2
0
 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;
 }
示例#3
0
 public SignUpEventSuccessEventConsumer(EventParticipantContext context)
 {
     _context = context;
 }