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

Initialize() private method

private Initialize ( ) : void
return void
        private void Initialize()
        {
            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._Comment1 = default(EntityRef<Comment>);
            this._User = default(EntityRef<User>);
            OnCreated();
        }