Пример #1
0
        public void CreateNewReport(LogIncidentReportHandler c)
        {
            c.ChooseReporter(4);
            c.CreateNewIncidentReport( );

            Console.WriteLine("Select ID of the Weather when the incident happened.");
            Console.WriteLine("\t1) Fine");
            Console.WriteLine("\t2) Rain");
            Console.WriteLine("\t3) Cloudy");
            Console.WriteLine("\t4) Windy");
            Console.WriteLine();
            int weatherID = (int.Parse(Console.ReadLine()) - 1);
            c.ChooseWeather(weatherID);
            c.LogIncidentReport();
        }