コード例 #1
0
ファイル: Aluno.cs プロジェクト: 4nub1s/infoGym
 public Aluno(String nome, String rg, String cpf, String bairro,
     String rua, String numero, String cep, String cel, String fone, 
     String email, String cidade, String dtNasc, char sexo)
 {
     alunoBD = new AlunoBD();
     this.nome = nome;
     this.rg = rg; this.cpf = cpf; this.bairro = bairro; this.rua = rua;
     this.numero = numero; this.cep = cep; this.cel = cel; this.fone = fone;
     this.email = email; this.cidade = cidade; this.dtNasc = dtNasc;
     this.sexo = sexo;
 }
コード例 #2
0
ファイル: Aluno.cs プロジェクト: 4nub1s/infoGym
 public Aluno()
 {
     alunoBD = new AlunoBD();
     sexo = 'm';
     nome = rg = cpf = bairro = rua = numero = cep = cel = fone = email = cidade = terId = "";
 }