コード例 #1
0
 public Handler(IFlightPathDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
コード例 #2
0
 public GetAircraftDetailQueryHandler(IFlightPathDbContext context)
 {
     _context = context;
 }
コード例 #3
0
 public Handler(IFlightPathDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public GetAirportDtosListQueryHandler(IFlightPathDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #5
0
 public DeleteAirportCommandHandler(IFlightPathDbContext context)
 {
     _context = context;
 }