/// <summary>
 /// Deprecated Method for adding a new object to the TimeTables EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToTimeTables(TimeTable timeTable)
 {
     base.AddObject("TimeTables", timeTable);
 }
 /// <summary>
 /// Create a new TimeTable object.
 /// </summary>
 /// <param name="managerId">Initial value of the ManagerId property.</param>
 /// <param name="timeItemId">Initial value of the TimeItemId property.</param>
 /// <param name="enabled">Initial value of the Enabled property.</param>
 public static TimeTable CreateTimeTable(global::System.Int32 managerId, global::System.Int32 timeItemId, global::System.Boolean enabled)
 {
     TimeTable timeTable = new TimeTable();
     timeTable.ManagerId = managerId;
     timeTable.TimeItemId = timeItemId;
     timeTable.Enabled = enabled;
     return timeTable;
 }