/// <summary>
 /// Deprecated Method for adding a new object to the Sections EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSections(Section section)
 {
     base.AddObject("Sections", section);
 }
 /// <summary>
 /// Create a new Section object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="department_Id">Initial value of the Department_Id property.</param>
 /// <param name="year">Initial value of the Year property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 public static Section CreateSection(global::System.Int32 id, global::System.String department_Id, global::System.Int32 year, global::System.String name)
 {
     Section section = new Section();
     section.Id = id;
     section.Department_Id = department_Id;
     section.Year = year;
     section.Name = name;
     return section;
 }