Beispiel #1
0
 public GetAllDestinationsQueryHandler(IHolidayDestinationsDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #2
0
 public CreateDestinationCommandHandler(IHolidayDestinationsDbContext context)
 {
     _context = context;
 }
 public GetDestinationQueryHandler(IHolidayDestinationsDbContext context)
 {
     _context = context;
 }