/// <summary>
 /// Deprecated Method for adding a new object to the DMeetingParticipants EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToDMeetingParticipants(DMeetingParticipant dMeetingParticipant)
 {
     base.AddObject("DMeetingParticipants", dMeetingParticipant);
 }
 /// <summary>
 /// Create a new DMeetingParticipant object.
 /// </summary>
 /// <param name="meetingId">Initial value of the MeetingId property.</param>
 /// <param name="participant">Initial value of the Participant property.</param>
 public static DMeetingParticipant CreateDMeetingParticipant(global::System.Guid meetingId, global::System.String participant)
 {
     DMeetingParticipant dMeetingParticipant = new DMeetingParticipant();
     dMeetingParticipant.MeetingId = meetingId;
     dMeetingParticipant.Participant = participant;
     return dMeetingParticipant;
 }