コード例 #1
0
ファイル: Template1Mutations.cs プロジェクト: EventMS/EMS
 public Template1Mutations(Template1Context 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;
 }
コード例 #2
0
ファイル: Template1Queries.cs プロジェクト: EventMS/EMS
 public Template1Queries(Template1Context context)
 {
     _context = context;
 }