/// <summary>
 /// Deprecated Method for adding a new object to the PreviousEmployees EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPreviousEmployees(PreviousEmployee previousEmployee)
 {
     base.AddObject("PreviousEmployees", previousEmployee);
 }
 /// <summary>
 /// Create a new PreviousEmployee object.
 /// </summary>
 /// <param name="employeeID">Initial value of the EmployeeID property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 public static PreviousEmployee CreatePreviousEmployee(global::System.Int32 employeeID, global::System.String lastName, global::System.String firstName)
 {
     PreviousEmployee previousEmployee = new PreviousEmployee();
     previousEmployee.EmployeeID = employeeID;
     previousEmployee.LastName = lastName;
     previousEmployee.FirstName = firstName;
     return previousEmployee;
 }