/// <summary>
 /// Deprecated Method for adding a new object to the AuthenticatedUsers EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToAuthenticatedUsers(AuthenticatedUser authenticatedUser)
 {
     base.AddObject("AuthenticatedUsers", authenticatedUser);
 }
 /// <summary>
 /// Create a new AuthenticatedUser object.
 /// </summary>
 /// <param name="personID">Initial value of the PersonID property.</param>
 /// <param name="userID">Initial value of the UserID property.</param>
 /// <param name="authenticatedUserID">Initial value of the AuthenticatedUserID property.</param>
 public static AuthenticatedUser CreateAuthenticatedUser(global::System.Guid personID, global::System.Guid userID, global::System.Guid authenticatedUserID)
 {
     AuthenticatedUser authenticatedUser = new AuthenticatedUser();
     authenticatedUser.PersonID = personID;
     authenticatedUser.UserID = userID;
     authenticatedUser.AuthenticatedUserID = authenticatedUserID;
     return authenticatedUser;
 }