FT.DB.User.Initialize C# (CSharp) Method

Initialize() private method

private Initialize ( ) : void
return void
        private void Initialize()
        {
            this._UserLawVotes = new EntitySet<UserLawVote>(new Action<UserLawVote>(this.attach_UserLawVotes), new Action<UserLawVote>(this.detach_UserLawVotes));
            this._Comments = new EntitySet<Comment>(new Action<Comment>(this.attach_Comments), new Action<Comment>(this.detach_Comments));
            this._CommentVotes = new EntitySet<CommentVote>(new Action<CommentVote>(this.attach_CommentVotes), new Action<CommentVote>(this.detach_CommentVotes));
            this._Tags = new EntitySet<Tag>(new Action<Tag>(this.attach_Tags), new Action<Tag>(this.detach_Tags));
            this._P20Questions = new EntitySet<P20Question>(new Action<P20Question>(this.attach_P20Questions), new Action<P20Question>(this.detach_P20Questions));
            OnCreated();
        }