/// <summary>
 /// Create a new Department object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="chair">Initial value of the Chair property.</param>
 public static Department CreateDepartment(global::System.Int64 id, global::System.String name, global::System.Int64 chair)
 {
     Department department = new Department();
     department.ID = id;
     department.Name = name;
     department.Chair = chair;
     return department;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Departments EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToDepartments(Department department)
 {
     base.AddObject("Departments", department);
 }