portfílio individual

357 palavras 2 páginas
4.3 class Reserva
{
private int _CodigoReserva; private DateTime _DataReserva; private DateTime _DataRetirada; private DateTime _DataDevolucao; private int _CodigoCliente; private int _NumeroBuggy; private decimal _ValorReserva;

public int CodigoReserva
{
get { return _CodigoReserva; } set { _CodigoReserva = value; }
}

public DateTime DataReserva
{
get { return _DataReserva; } set { _DataReserva = value; }
}

public DateTime DataRetirada
{
get { return _DataRetirada; } set { _DataRetirada = value; }
}

public DateTime DataDevolucao
{
get { return _DataDevolucao; } set { _DataDevolucao = value; }
}

public int CodigoCliente
{
get { return _CodigoCliente; } set { _CodigoCliente = value; }
}

public int NumeroBuggy
{
get { return _NumeroBuggy; } set { _NumeroBuggy = value; }
}

public decimal ValorReserva
{
get { return _ValorReserva; } set { _ValorReserva = value; }
}
}

4.2

Código fonte do algoritmo.

using System; using System.Collections.Generic; using System.Linq; using System.Text;

namespace ConsoleApplication4

[Somente administradores podem ver este link] do algoritimo;
{
class Program
{
static void Main(string[] args)

// menu do sistema;

{
Console.BackgroundColor = ConsoleColor.Blue; int count = 0;
Console.WriteLine("");
Console.WriteLine(" LOCADORA ALUGUE BUGGY ");
Console.WriteLine("");
Console.WriteLine("");
Console.WriteLine("");
Console.WriteLine("");
Console.WriteLine("| Menu de Operações |");
Console.WriteLine("");
Console.WriteLine("");
Console.WriteLine("");
Console.WriteLine("+--------------------+");
Console.WriteLine("| 0 - Sair |");
Console.WriteLine("| 1 - Incluir |");
Console.WriteLine("| 2 - Excluir |");
Console.WriteLine("+--------------------+");
Console.WriteLine("");

// cria as variáveis necessárias; string opcao = ""; string[] buggy = new string[20]; string buggt = ""; while (!opcao.Equals(0))
{
Console.Write("Digite a

Relacionados

  • Mercado
    93893 palavras | 376 páginas