/// <summary>
 /// Deprecated Method for adding a new object to the BookingNotes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToBookingNotes(BookingNotes bookingNotes)
 {
     base.AddObject("BookingNotes", bookingNotes);
 }
 /// <summary>
 /// Create a new BookingNotes object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="note">Initial value of the Note property.</param>
 /// <param name="employeeId">Initial value of the EmployeeId property.</param>
 public static BookingNotes CreateBookingNotes(global::System.Int32 id, global::System.String note, global::System.Int32 employeeId)
 {
     BookingNotes bookingNotes = new BookingNotes();
     bookingNotes.Id = id;
     bookingNotes.Note = note;
     bookingNotes.EmployeeId = employeeId;
     return bookingNotes;
 }