Beispiel #1
0
 public EventVerificationMutations(EventVerificationContext 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 EventVerificationQueries(EventVerificationContext context)
 {
     _context = context;
 }
 public SignUpEventSuccessEventConsumer(EventVerificationContext context)
 {
     _context = context;
 }