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