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

Initialize() private method

private Initialize ( ) : void
return void
        private void Initialize()
        {
            this._Deliberations = new EntitySet<Deliberation>(new Action<Deliberation>(this.attach_Deliberations), new Action<Deliberation>(this.detach_Deliberations));
            this._LawChapters = new EntitySet<LawChapter>(new Action<LawChapter>(this.attach_LawChapters), new Action<LawChapter>(this.detach_LawChapters));
            this._Paragraphs = new EntitySet<Paragraph>(new Action<Paragraph>(this.attach_Paragraphs), new Action<Paragraph>(this.detach_Paragraphs));
            this._ProposedLaws = new EntitySet<ProposedLaw>(new Action<ProposedLaw>(this.attach_ProposedLaws), new Action<ProposedLaw>(this.detach_ProposedLaws));
            this._Speakers = new EntitySet<Speaker>(new Action<Speaker>(this.attach_Speakers), new Action<Speaker>(this.detach_Speakers));
            this._LawVotes = new EntitySet<LawVote>(new Action<LawVote>(this.attach_LawVotes), new Action<LawVote>(this.detach_LawVotes));
            this._Ministry = default(EntityRef<Ministry>);
            this._Session = default(EntityRef<Session>);
            this._Committee = default(EntityRef<Committee>);
            OnCreated();
        }