How can I create variables to serve as possible status for an order? After the request has already been made, I want to create options so that when the attendant enters, the status of the request changes. Options can be: 1-In transit 2-Canceled 3-Delivered
string Cliente = ""; //Cria a variável Cliente em branco
Console.Write("Cliente: "); //Escreve "Cliente" na tela para o usuário.
Cliente = Console.ReadLine(); //Insere na memória o que foi digitado pelo usuário.
--
List<string> Fila;
Fila = new List<string>(); //Fila criada com 10 elementos