public BasketsController(
     ISimpleBasketRepository repository,
     IAuthenticationService authenticationService,
     IMapper mapper)
 {
     _repository            = repository;
     _authenticationService = authenticationService;
     _mapper = mapper;
 }
 public ProductsController(ISimpleBasketRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }