public async Task <bool> RequestProductions()
        {
            var url = _configuration.GetSection("Apis:Production").Get <string>();

            var client = new HttpClient();

            var response = await client.GetAsync(new Uri(url));

            if (response.IsSuccessStatusCode)
            {
                var responseText = await response.Content.ReadAsStringAsync();

                var production = JsonConvert.DeserializeObject <ProductionToGet>(responseText);

                _storeCatalogRepository.UpsertProduction(production);

                return(true);
            }

            return(false);
        }