Skip to content

Instantly share code, notes, and snippets.

@bernardobrezende
Created November 23, 2011 13:37
Show Gist options
  • Save bernardobrezende/1388679 to your computer and use it in GitHub Desktop.
Save bernardobrezende/1388679 to your computer and use it in GitHub Desktop.
Dúvida sobre relacionamentos FNH
public class Pessoa
{
public virtual int Id { get; private set; }
public virtual string Nome { get; set; }
public virtual string Email { get; set; }
}
public class Login : Pessoa
{
public virtual string Senha { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment