Beispiel #1
0
 public GetCarsListQueryHandler(ICarpoolDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #2
0
 public DeleteRideshareCommandHandler(ICarpoolDbContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public GetRideshareDetailQueryHandler(ICarpoolDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetEmployeeDetailQueryHandler(ICarpoolDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }