public Tela_de_CadastraCliente(LES les, LDE lde, FEC[] fec)
 {
     InitializeComponent();
     this.les = les;
     this.lde = lde;
     this.fec = fec;
 }
    public void Main(int a)
    {
        LDE <int> TudoLDE = new LDE <int>();

        // 7 Vagas disponiveis
        TudoLDE.Inserir(1);
        TudoLDE.Inserir(2);
        // TudoLDE.Inserir(3);
        TudoLDE.Inserir(4);
        TudoLDE.Inserir(5);
        TudoLDE.Inserir(6);
        TudoLDE.Inserir(7);

        int quarto = TudoLDE.Busca();

        if (a == 23425467)
        {
            if (quarto == 0)
            {
                TextoMostrado.text = "Não há vagas";
            }
            else
            {
                TextoMostrado.text = "Vagas Disponiveis: \n\nVagas informadas pela empresa.";
            }
        }
    }
    public void Main(int a)
    {
        LDE <int> TudoLDE = new LDE <int>();

        // 7 Vagas disponiveis
        TudoLDE.Inserir(1);
        TudoLDE.Inserir(2);
        // TudoLDE.Inserir(3);
        TudoLDE.Inserir(4);
        TudoLDE.Inserir(5);
        TudoLDE.Inserir(6);
        TudoLDE.Inserir(7);

        int quarto = TudoLDE.Busca();

        if (a == 23425467)
        {
            if (quarto == 0)
            {
                TextoMostrado.text = "Não há vagas";
            }
            else
            {
                TextoMostrado.text = "Vagas Disponiveis: \n\nFiscal de Caixa. \n\nRepositor de Mercadoria.";
            }
        }
    }
Exemple #4
0
    public void Main(int a)
    {
        LDE <int> TudoLDE = new LDE <int>();

        // 7 Quartos no total apenas o numero 3 disponivel.
        TudoLDE.Inserir(1);
        TudoLDE.Inserir(2);
        // TudoLDE.Inserir(3);
        TudoLDE.Inserir(4);
        TudoLDE.Inserir(5);
        TudoLDE.Inserir(6);
        TudoLDE.Inserir(7);

        int quarto = TudoLDE.Busca();

        if (a == 23425467)
        {
            if (quarto == 0)
            {
                TextoMostrado.text = "Não há vagas";
            }
            else
            {
                TextoMostrado.text = "Quarto numero: " + quarto + " está disponivel.";
            }
        }
    }
Exemple #5
0
 public Busca_Informacoes_Cliente(LES les, LDE lde, FEC[] fec)
 {
     InitializeComponent();
     this.les = les;
     this.lde = lde;
     this.fec = fec;
 }
Exemple #6
0
 public Tela_de_Tempo(LES les, LDE lde, FEC[] fec, Pessoa p)
 {
     this.les    = les;
     this.lde    = lde;
     this.fec    = fec;
     this.pessoa = p;
     InitializeComponent();
 }
 public Tela_de_Plano(LES les, LDE lde, FEC[] fec, Pessoa p)
 {
     this.les    = les;
     this.lde    = lde;
     this.fec    = fec;
     this.pessoa = p;
     InitializeComponent();
     rbtnComum.Visible   = les.confirmaDisponivel(p, "Comum");
     rbtnDeluxe.Visible  = les.confirmaDisponivel(p, "Deluxe");
     rbtnPremium.Visible = les.confirmaDisponivel(p, "Premium");
 }
Exemple #8
0
    static void Main(string[] args)
    {
        LDE <String> TudoLDE = new LDE <String>();


        Console.Write("Digite seu nome: ");
        String nome = Console.ReadLine();

        TudoLDE.Inserir(nome);
        TudoLDE.Inserir("May");
        TudoLDE.Inserir("Lin");
    }
 public Tela_Esqueci_Senha(LDE lde)
 {
     InitializeComponent();
     this.lde = lde;
 }