using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace bytebank.Titular
{
internal class Cliente
{
public string Nome { get; set; }
public string Cpf { get; set; }
public string Profissao { get; set; }
public static int TotalDeClienteCriados { get; set; }
public Cliente(string nome, string cpf)
{
this.Nome = nome;
this.Cpf = cpf;
TotalDeClienteCriados++;
}
}
}