Example #1
0
        public ViewResult CarsSync()
        {
            SampleAPIClient client = new SampleAPIClient();
            var             cars   = client.GetCarsAsync().Result;

            return(View("Index", model: cars));
        }
Example #2
0
        public async Task <ViewResult> CarsAsync()
        {
            SampleAPIClient client = new SampleAPIClient();
            var             cars   = await client.GetCarsAsync();

            return(View("Index", model: cars));
        }