/// <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="description">Initial value of the Description property.</param>
 /// <param name="companyId">Initial value of the CompanyId property.</param>
 public static Department CreateDepartment(global::System.Int32 id, global::System.String name, global::System.String description, global::System.Int32 companyId)
 {
     Department department = new Department();
     department.Id = id;
     department.Name = name;
     department.Description = description;
     department.CompanyId = companyId;
     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);
 }