Classe Aluno
By: a guest | Mar 21st, 2010 | Syntax:
C# | Size: 0.89 KB | Hits: 84 | Expires: Never
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Escola
{
class Aluno
{
private int id;
private string nome;
private string telefone;
private string email;
private Nota nota;
public int Id
{
get { return id; }
set { id = value; }
}
public string Nome
{
get { return nome; }
set { nome = value; }
}
public string Telefone
{
get { return telefone; }
set { telefone = value; }
}
public string Email
{
get { return email; }
set { email = value; }
}
internal Nota Nota
{
get { return nota; }
set { nota = value; }
}
}
}