//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace RelyingPartyLogic {
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Data.EntityClient;
using System.Data.Objects;
using System.Linq;
using System.Text;
public partial class DatabaseEntities {
///
/// Clears the expired nonces.
///
internal void ClearExpiredNonces() {
this.ExecuteCommand("ClearExpiredNonces");
}
///
/// Clears the expired associations.
///
internal void ClearExpiredAssociations() {
this.ExecuteCommand("ClearExpiredAssociations");
}
}
}