Пример #1
0
        public static void MostrarComandaCompleta(int comandaId)
        {
            MostrarAcompanhamento(comandaId, true);

            ViewPrinter.Println("\t--------------------------------------------------------", ConsoleColor.Cyan);

            ViewPrinter.Print("\tValor Final: ");
            ViewPrinter.Print($" R$ { ComandaService.CalcularValorComanda(comandaId, true).ToString("F2", CultureInfo.InvariantCulture) } ", ConsoleColor.White, ConsoleColor.Green);
            ViewPrinter.Print("\t * Incluído 10% garçom", ConsoleColor.Yellow);

            Console.WriteLine();
        }