How to create variables for status of an order?

1

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 
    
asked by anonymous 28.05.2015 / 03:00

1 answer

1

Use an enum:

public enum StatusPedido 
{
   EmTransito = 1,
   Cancelado = 2,
   Entregue = 3
}

Then in your class Pedido :

public class Pedido 
{
    ...
    public StatusPedido Status { get; set;}
    ...
}
    
28.05.2015 / 03:06