/// <summary> /// Create a new Employee object. /// </summary> /// <param name="id">Initial value of the ID property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="phone">Initial value of the Phone property.</param> /// <param name="departmentID">Initial value of the DepartmentID property.</param> /// <param name="email">Initial value of the Email property.</param> public static Employee CreateEmployee(global::System.Int32 id, global::System.String name, global::System.String phone, global::System.Int32 departmentID, global::System.String email) { Employee employee = new Employee(); employee.ID = id; employee.Name = name; employee.Phone = phone; employee.DepartmentID = departmentID; employee.Email = email; return employee; }
/// <summary> /// Deprecated Method for adding a new object to the Employees EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToEmployees(Employee employee) { base.AddObject("Employees", employee); }