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