public Invite(string inviter, RelationshipToInvitee relationship, InviteType inviteType)
 {
     Inviter      = new EntityName(inviter);
     Relationship = relationship;
     Type         = inviteType;
 }
 public SocialGameInvite(string inviter, RelationshipToInvitee relationship, InviteType inviteType, Game game) : this(
         new Invite(inviter, relationship, inviteType), game)
 {
 }