/// <summary>
 /// Create a new Employee object.
 /// </summary>
 /// <param name="employeeID">Initial value of the EmployeeID property.</param>
 /// <param name="hireDate">Initial value of the HireDate property.</param>
 public static Employee CreateEmployee(global::System.Int32 employeeID, global::System.DateTime hireDate)
 {
     Employee employee = new Employee();
     employee.EmployeeID = employeeID;
     employee.HireDate = hireDate;
     return employee;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Employees EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToEmployees(Employee employee)
 {
     base.AddObject("Employees", employee);
 }