Não da nenhuma mensagem de erro mas também não aparece nada em nenhuma das minha textBox.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CaixaEletronico
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object Sender, EventArgs e)
{
Conta conta = new Conta();
conta.Titular = new Cliente();
conta.Titular.Nome = "bruno";
conta.Numero = 1;
conta.Deposita(250);
textTitular.Text = conta.Titular.Nome;
textNumero.Text = Convert.ToString(conta.Numero);
textSaldo.Text = Convert.ToString(conta.Saldo);
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaixaEletronico
{
class Conta
{
public int Numero {get; set;}
public Cliente Titular { get; set;}
public double Saldo { get; private set; }
//atributos agencias e cpf omitidos
public void Deposita(double valorASerDepositado)
{
if (valorASerDepositado >= 0)
{
this.Saldo += valorASerDepositado;
}
}
public bool Saca(double valorASerSacado)
{
if (valorASerSacado > this.Saldo || valorASerSacado < 0)
{
return false;
}
else
{
if (this.Titular.EhMaiorDeIdade())
{
this.Saldo -= valorASerSacado;
return true;
}
else
{
if (valorASerSacado <= 200)
{
this.Saldo -= valorASerSacado;
return true;
}
else
{
return false;
}
}
}
}
public void Transfere(double valor, Conta destino)
{
this.Saca(valor);
destino.Deposita(valor);
}
public double CalculaRendimentoAnual()
{
double saldoNaqueleMes = this.Saldo;
for (int i = 0; i < 12; i++)
{
saldoNaqueleMes = saldoNaqueleMes * 1.007;
}
double rendimento = saldoNaqueleMes - this.Saldo;
return rendimento;
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaixaEletronico
{
class Cliente
{
public string Nome {get; set;}
public string rg;
public string cpf;
public string endereco;
public int idade;
public Cliente(string nome)
{
this.Nome = nome;
}
public Cliente() { }// pq nome é opcional
public bool EhMaiorDeIdade()
{
return this.idade >= 18;
}
}
}