public List <ProductsPriceInStoreService> GetResponse()
        {
            WebClient    client       = new WebClient();
            Stream       stream       = client.OpenRead(this.resultURL);
            StreamReader reader       = new StreamReader(stream);
            JArray       responseJSON = JArray.Parse(reader.ReadLine());
            List <ProductsPriceInStoreService> responseList = new List <ProductsPriceInStoreService>();

            foreach (JObject jobject in responseJSON)
            {
                ProductsPriceInStoreService response = ProductsPriceInStoreService.FromJObject(jobject);

                responseList.Add(response);
            }

            return(responseList);
        }