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