/// <summary> /// Create a new Employee object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="firstName">Initial value of the FirstName property.</param> /// <param name="lastName">Initial value of the LastName property.</param> /// <param name="gender">Initial value of the Gender property.</param> /// <param name="salary">Initial value of the Salary property.</param> /// <param name="departmentId">Initial value of the DepartmentId property.</param> public static Employee CreateEmployee(global::System.Int32 id, global::System.String firstName, global::System.String lastName, global::System.String gender, global::System.Int32 salary, global::System.Int32 departmentId) { Employee employee = new Employee(); employee.Id = id; employee.FirstName = firstName; employee.LastName = lastName; employee.Gender = gender; employee.Salary = salary; employee.DepartmentId = departmentId; 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); }