-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCliente.cs
62 lines (49 loc) · 1.42 KB
/
Cliente.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
internal class Cliente
{
// Atributos
private string nome { get; set; }
private string cpf { get; set; }
private string numConta { get; set; }
// Construtores
public Cliente()
{
}
public Cliente(string nome, string cpf)
{
Random r = new Random();
int num = r.Next(9999);
int op = r.Next(10);
this.nome = nome;
this.cpf = cpf;
this.numConta = string.Concat(num + "-" + op);
}
public void ConsultarCliente()
{
Console.WriteLine($"Nome do Cliente: {this.nome}\n" +
$"CPF: {this.cpf}\n" +
$"Conta: {this.numConta}");
}
public string getNome() { return nome; }
public void setNome(string nome)
{
this.nome = nome;
}
public string getCpf() { return cpf; }
public void setCpf(string cpf)
{ this.cpf = cpf; }
public string getNumConta() { return numConta; }
~Cliente()
{
Console.WriteLine($"Destrutor Executado para cliente: {this.nome}");
Console.ReadKey();
}
}
}