public Paciente(string nome, string email, string telefone, string matricula)
 {
     this.nome      = nome;
     this.email     = email;
     this.telefone  = telefone;
     this.pagamento = new Pagamento()
     {
         convenio  = true,
         matricula = matricula
     };
     this.contador++;
 }
 public Paciente(string nome, string email, string telefone, string tipoCartao, string nomeCartao, string numeroCartao, int cvv, string cpf)
 {
     this.nome      = nome;
     this.email     = email;
     this.telefone  = telefone;
     this.pagamento = new Pagamento()
     {
         convenio = false,
         cartao   = new Cartao()
         {
             tipo   = tipoCartao,
             nome   = nomeCartao,
             numero = numeroCartao,
             cvv    = cvv,
             cpf    = cpf
         }
     };
     if (this.contador >= 12)
     {
         this.contador = 0;
     }
 }