/// <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);
 }
 /// <summary>
 /// Create a new Department object.
 /// </summary>
 /// <param name="departmentID">Initial value of the DepartmentID property.</param>
 /// <param name="departmentDescription">Initial value of the DepartmentDescription property.</param>
 public static Department CreateDepartment(global::System.Int16 departmentID, global::System.String departmentDescription)
 {
     Department department = new Department();
     department.DepartmentID = departmentID;
     department.DepartmentDescription = departmentDescription;
     return department;
 }