Exemple #1
0
        static void DelCarViaBodyNumber(TaxiStation footInHands)
        {
            LoggerMaster.LoggerM.Debug("In class: " + nameof(Program) + " : " + "Try call: " + MethodBase.GetCurrentMethod());

            Console.Write("Введите VIN номер авто: ");
            bool status = footInHands.DelCarViaBodyNumber(Console.ReadLine().ToLower());

            if (!status)
            {
                Console.WriteLine("Удалить авто не получилось.");
            }

            LoggerMaster.LoggerM.Debug("In class: " + nameof(Program) + " : " + "Was called: " + MethodBase.GetCurrentMethod());
        }