Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            const int        HOW_MANY       = 20;
            const string     URL            = "http://files.olo.com/pizzas.json";
            IOrderProcessor  orderProcessor = new PizzaOrderProcessor();
            JsonToTWebParser jsonParser     = new JsonToTWebParser();
            //IEnumerable<RankedPizzaOrder> result = RankIt(URL, HOW_MANY, orderProcessor, jsonParser);
            IEnumerable <RankedPizzaOrder> result = RankItWithAsync(URL, HOW_MANY, orderProcessor, jsonParser);

            DisplayResult(result);
        }
Ejemplo n.º 2
0
        /*
         * private static IEnumerable<RankedPizzaOrder> RankIt(string url, int howMany, IOrderProcessor orderProcessor, JsonToTWebParser jsonParser)
         * {
         *  //string path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
         *  //IEnumerable<Order> orders = orderProcessor.GetOrders(path + "\\pizzas.json");
         *
         *  IEnumerable<Order> orders = jsonParser.GetRecordsFromJson<PizzaOrder>(url);
         *  IEnumerable<RankedPizzaOrder> result = orderProcessor.RankOrders(howMany, orders);
         *  return result;
         * }
         */

        private static IEnumerable <RankedPizzaOrder> RankItWithAsync(string url, int howMany, IOrderProcessor orderProcessor, JsonToTWebParser jsonParser)
        {
            Task <IEnumerable <PizzaOrder> > task   = jsonParser.GetRecordsFromJsonAsync <PizzaOrder>(url);
            IEnumerable <RankedPizzaOrder>   result = orderProcessor.RankOrders(howMany, task.Result);

            return(result);
        }