Beispiel #1
0
 public GetAllPresentationsHandler(IFIADbContext context, IMapper mapper)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
     this.mapper  = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }
Beispiel #2
0
 public DeleteSpeakerHandler(IFIADbContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public GetSpeakerDetailsHandler(IFIADbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public GetAttendantDetailsHandler(IFIADbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public CreatePresentationHandler(IFIADbContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public GetPresentationDetailsHandler(IFIADbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public CreateInscriptionHandler(IFIADbContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
     this.mapper  = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }