public ProductsController(
     IConfiguration configuration,
     IHealthCheck healthCheck,
     IStoreCatalogRepository storeCatalogRepository,
     IUserWithLessOffer userWithLessOffer)
 {
     _configuration          = configuration;
     _healthCheck            = healthCheck;
     _storeCatalogRepository = storeCatalogRepository;
     _userWithLessOffer      = userWithLessOffer;
 }
 public GetProductions(IStoreCatalogRepository repository, IMapper mapper, IConfiguration configuration)
 {
     _storeCatalogRepository = repository;
     _mapper        = mapper;
     _configuration = configuration;
 }