Models.Event.Event C# (CSharp) Method

Event() public method

public Event ( ) : System.Data.Linq
return System.Data.Linq
		public Event()
		{
			this._Timeslots = new EntitySet<Timeslot>(new Action<Timeslot>(this.attach_Timeslots), new Action<Timeslot>(this.detach_Timeslots));
			this._Rooms = new EntitySet<Room>(new Action<Room>(this.attach_Rooms), new Action<Room>(this.detach_Rooms));
			this._UserEvents = new EntitySet<UserEvent>(new Action<UserEvent>(this.attach_UserEvents), new Action<UserEvent>(this.detach_UserEvents));
			this._Sessions = new EntitySet<Session>(new Action<Session>(this.attach_Sessions), new Action<Session>(this.detach_Sessions));
			this._CurrentAttendees = new EntitySet<CurrentAttendee>(new Action<CurrentAttendee>(this.attach_CurrentAttendees), new Action<CurrentAttendee>(this.detach_CurrentAttendees));
			OnCreated();
		}