public Handler(
     IShoppingVanRepository shoppingVanRepository,
     ICurrentUserService currentUserService)
 {
     _shoppingVanRepository = shoppingVanRepository;
     _currentUserService    = currentUserService;
 }
Beispiel #2
0
 public Handler(
     IShoppingVanRepository shoppingVanRepository,
     ICurrentUserService currentUserService,
     IMediator mediator)
 {
     _shoppingVanRepository = shoppingVanRepository;
     _currentUserService    = currentUserService;
     _mediator = mediator;
 }
Beispiel #3
0
 public Handler(IShoppingVanRepository shoppingVanRepository, ICurrentUserService currentUserService, IMapper mapper)
 {
     _shoppingVanRepository = shoppingVanRepository;
     _currentUserService    = currentUserService;
     _mapper = mapper;
 }