예제 #1
0
        static void Main(string[] args)
        {
            GetCases("india");

            CountryService countryService = new CountryService();
            var            countries      = countryService.GetCountries();

            StatisticsService statisticsService = new StatisticsService();
            var stats = statisticsService.GetStatistics();

            SummaryService summaryService = new SummaryService();
            var            summary        = summaryService.GetGlobalSummary();

            System.Console.ReadLine();
        }