/// <summary>
 /// Deprecated Method for adding a new object to the InvitedEmployees EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToInvitedEmployees(InvitedEmployee invitedEmployee)
 {
     base.AddObject("InvitedEmployees", invitedEmployee);
 }
 /// <summary>
 /// Create a new InvitedEmployee object.
 /// </summary>
 /// <param name="employeeID">Initial value of the EmployeeID property.</param>
 /// <param name="fullName">Initial value of the FullName property.</param>
 /// <param name="title">Initial value of the Title property.</param>
 /// <param name="invitedEmployeeID">Initial value of the InvitedEmployeeID property.</param>
 public static InvitedEmployee CreateInvitedEmployee(global::System.Int32 employeeID, global::System.String fullName, global::System.String title, global::System.Int32 invitedEmployeeID)
 {
     InvitedEmployee invitedEmployee = new InvitedEmployee();
     invitedEmployee.EmployeeID = employeeID;
     invitedEmployee.FullName = fullName;
     invitedEmployee.Title = title;
     invitedEmployee.InvitedEmployeeID = invitedEmployeeID;
     return invitedEmployee;
 }