Ejemplo n.º 1
0
 public GetAllPresentationsHandler(IFIADbContext context, IMapper mapper)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
     this.mapper  = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }
Ejemplo n.º 2
0
 public DeleteSpeakerHandler(IFIADbContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
 }
Ejemplo n.º 3
0
 public GetSpeakerDetailsHandler(IFIADbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Ejemplo n.º 4
0
 public GetAttendantDetailsHandler(IFIADbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Ejemplo n.º 5
0
 public CreatePresentationHandler(IFIADbContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public GetPresentationDetailsHandler(IFIADbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Ejemplo n.º 7
0
 public CreateInscriptionHandler(IFIADbContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
     this.mapper  = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }