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