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

Initialize() private method

private Initialize ( ) : void
return void
        private void Initialize()
        {
            this._Laws = new EntitySet<Law>(new Action<Law>(this.attach_Laws), new Action<Law>(this.detach_Laws));
            this._ItemCommittees = new EntitySet<ItemCommittee>(new Action<ItemCommittee>(this.attach_ItemCommittees), new Action<ItemCommittee>(this.detach_ItemCommittees));
            this._CommitteeTrips = new EntitySet<CommitteeTrip>(new Action<CommitteeTrip>(this.attach_CommitteeTrips), new Action<CommitteeTrip>(this.detach_CommitteeTrips));
            OnCreated();
        }