/// <summary>
 /// Create a new Department object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="cityCode">Initial value of the CityCode property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="addresse">Initial value of the Addresse property.</param>
 /// <param name="phone">Initial value of the Phone property.</param>
 public static Department CreateDepartment(global::System.Guid id, global::System.Int32 cityCode, global::System.String name, global::System.String addresse, global::System.String phone)
 {
     Department department = new Department();
     department.Id = id;
     department.CityCode = cityCode;
     department.Name = name;
     department.Addresse = addresse;
     department.Phone = phone;
     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);
 }