/// <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> /// <param name="budget">Initial value of the Budget property.</param> /// <param name="startDate">Initial value of the StartDate property.</param> public static Department CreateDepartment(global::System.Int32 departmentID, global::System.String name, global::System.Decimal budget, global::System.DateTime startDate) { Department department = new Department(); department.DepartmentID = departmentID; department.Name = name; department.Budget = budget; department.StartDate = startDate; 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); }