private int matricula;
public int Matricula
{
get { return matricula; }
set
{
if (value <= 0)
{
return;
}
else
{
this.matricula = value;
}
}
}