Ejemplo n.º 1
0
        public static Order GetOrderForTest()
        {
            Customer c = new Customer("12345", "Jiffy Lube", "Royal Palm Beach", "FL", "33411", "1203 N State Rd 7");
            Product  p = new Product("N95-1", "N95 masks", null, 1000);

            var lineItem  = new Order.LineItem(p, 300);
            var lineItems = new List <Order.LineItem> {
                lineItem
            };

            Location shipFrom = new Location
            {
                Country = "US",
                State   = "FL",
                City    = "Juno Beach",
                Street  = "790 Juno Ocean Walk #402-403",
                Zip     = "33408"
            };
            var o = new Order(c)
            {
                ShipFrom         = shipFrom,
                ShipToOverride   = c.Location,
                ShippingCost     = 9.95F,
                ProductLineItems = lineItems
            };

            return(o);
        }
Ejemplo n.º 2
0
        static async Task CallServiceToPostOrder()
        {
            try
            {
                var client = new HttpClient();
                client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

                Customer c = new Customer("12345", "Jiffy Lube", "Royal Palm Beach", "FL", "33411", "1203 N State Rd 7");
                Product  p = new Product("N95-1", "N95 masks", null, 1000);

                var lineItem  = new Order.LineItem(p, 300);
                var lineItems = new List <Order.LineItem> {
                    lineItem
                };

                Location shipFrom = new Location
                {
                    Country = "US",
                    State   = "FL",
                    City    = "Juno Beach",
                    Street  = "790 Juno Ocean Walk #402-403",
                    Zip     = "33408"
                };
                var o = new Order(c)
                {
                    ShipFrom         = shipFrom,
                    ShipToOverride   = c.Location,
                    ShippingCost     = 9.95F,
                    ProductLineItems = lineItems
                };

                var         postData         = JsonConvert.SerializeObject(o);
                HttpContent content          = new StringContent(postData, Encoding.UTF8, "application/json");
                var         orderTaxDataTask = client.PostAsync(orderTaxUrl, content);

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

                    float tax = JsonConvert.DeserializeObject <float>(taxInfoResponse);

                    Console.WriteLine($"The combined tax for the order is {tax:C}");
                }
                else
                {
                    Console.WriteLine($"The TaxService returned a Non-Successful response code: {response.StatusCode}. Reason: {response.ReasonPhrase}");
                }
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
                throw;
            }
        }