oi andré, aqui:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaixaEletron
{
class Conta
{
public int Numero { get; set; }
public Cliente Titular { get; set; }
public double Saldo { get; private set; }
public double _Saldo
{
set
{
this.Saldo = value;
}
}
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;
}
}
}
outra classe
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaixaEletron
{
class Cliente
{
public string nome;
public string rg;
public string cpf;
public string endereco;
public int idade;
public bool EhMaiorDeIdade()
{
return this.idade >= 18;
}
}
}
form
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 CaixaEletron
{
public partial class Form1 : Form
{
private Conta conta;
private Cliente cliente;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.conta = new Conta();
this.cliente = new Cliente() { nome = "Victor" };
this.conta.Titular = "Victor";
this.conta.Numero = 1;
this.conta.Deposita(250.0);
textoNumero.Text = Convert.ToString(this.conta.Numero);
textoSaldo.Text = Convert.ToString(this.conta.Saldo);
textoTitular.Text = Convert.ToString(this.conta.Titular);
/*
Conta c = new Conta() { Numero = 1, _Saldo = 250 };
Cliente c1 = new Cliente() { nome = "Victor" };
c.Titular = c1;
textoTitular.Text = Convert.ToString(c.Titular);
textoSaldo.Text = Convert.ToString(c.Saldo);
textoNumero.Text =Convert.ToString(c.Numero);
textoTitular.Text = Convert.ToString(c.Titular.nome);
*/ }
private void numero_TextChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}
```