Example #1
0
        private void showAllInfoOfOneVehicle()
        {
            string licensePlate = getLicensePlateNumber();
            string output       = string.Format(
                @"

Full Vehicle Information:
");

            Console.WriteLine(output);

            try
            {
                Console.WriteLine(r_Garage.AllInfoOfParticularVehicle(licensePlate).ToString());
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }