Created
April 12, 2021 19:07
-
-
Save luisdeol/fdcf050eb4e4bca753668c7178cd298e to your computer and use it in GitHub Desktop.
Artigo Estrutura de Dados - Parte #1 - Uso de Gerenciamento de Senhas de Atendimento
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace DataStructuresCsharp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var gerenciadorFilaAtendimento = new GerenciadorFilaAtendimento(); | |
gerenciadorFilaAtendimento.GerarSenha(); | |
gerenciadorFilaAtendimento.GerarSenha(); | |
gerenciadorFilaAtendimento.GerarSenha(); | |
gerenciadorFilaAtendimento.MostrarFila(); | |
gerenciadorFilaAtendimento.ChamarProximo(); | |
gerenciadorFilaAtendimento.ChamarProximo(); | |
gerenciadorFilaAtendimento.MostrarFila(); | |
gerenciadorFilaAtendimento.GerarSenha(); | |
gerenciadorFilaAtendimento.ChamarProximo(); | |
gerenciadorFilaAtendimento.MostrarFila(); | |
Console.ReadLine(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment