blob: 10c15185d3ed70507db44d2151c6d0aa8e6ab443 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//-----------------------------------------------------------------------
// <copyright file="Model.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
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 {
/// <summary>
/// Clears the expired nonces.
/// </summary>
internal void ClearExpiredNonces() {
this.ExecuteCommand("ClearExpiredNonces");
}
/// <summary>
/// Clears the expired associations.
/// </summary>
internal void ClearExpiredAssociations() {
this.ExecuteCommand("ClearExpiredAssociations");
}
}
}
|