Skip to content

Instantly share code, notes, and snippets.

@Itslet
Created December 5, 2010 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Itslet/729257 to your computer and use it in GitHub Desktop.
Save Itslet/729257 to your computer and use it in GitHub Desktop.
using Iesi.Collections.Generic;
namespace Concepts.Core
{
public class Person : Entity
{
public virtual string GivenName { get; set; }
public virtual string SurName { get; set; }
public virtual string SurNamePrefix { get; set; }
public virtual string OfficialName { get; set; }
public virtual DateTime? DateOfBirth { get; set; }
virtual public Iesi.Collections.Generic.ISet<PersonAddress>
Addresses { get; set; }
public Person() {
Addresses = new HashedSet<PersonAddress>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment