summaryrefslogtreecommitdiffstats
path: root/projecttemplates/RelyingPartyLogic/Model.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-01-07 08:54:52 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2010-01-07 08:54:52 -0800
commit1767c767e5e52cb28cf8e0bdeebdfe051caa1fd2 (patch)
treefd31e926fdfd22ec8819469a23b743d4253c07b0 /projecttemplates/RelyingPartyLogic/Model.cs
parent36bb738e4cc937a8b04321ef85b098d16d0793c8 (diff)
parentbbbebebce7d9306c48247f44be5b649c908b7a67 (diff)
downloadDotNetOpenAuth-1767c767e5e52cb28cf8e0bdeebdfe051caa1fd2.zip
DotNetOpenAuth-1767c767e5e52cb28cf8e0bdeebdfe051caa1fd2.tar.gz
DotNetOpenAuth-1767c767e5e52cb28cf8e0bdeebdfe051caa1fd2.tar.bz2
Merge branch 'v3.3'
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/Model.cs')
-rw-r--r--projecttemplates/RelyingPartyLogic/Model.cs10
1 files changed, 6 insertions, 4 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Model.cs b/projecttemplates/RelyingPartyLogic/Model.cs
index 10c1518..ca87c90 100644
--- a/projecttemplates/RelyingPartyLogic/Model.cs
+++ b/projecttemplates/RelyingPartyLogic/Model.cs
@@ -18,15 +18,17 @@ namespace RelyingPartyLogic {
/// <summary>
/// Clears the expired nonces.
/// </summary>
- internal void ClearExpiredNonces() {
- this.ExecuteCommand("ClearExpiredNonces");
+ /// <param name="transaction">The transaction to use, if any.</param>
+ internal void ClearExpiredNonces(EntityTransaction transaction) {
+ this.ExecuteCommand(transaction, "DatabaseEntities.ClearExpiredNonces");
}
/// <summary>
/// Clears the expired associations.
/// </summary>
- internal void ClearExpiredAssociations() {
- this.ExecuteCommand("ClearExpiredAssociations");
+ /// <param name="transaction">The transaction to use, if any.</param>
+ internal void ClearExpiredAssociations(EntityTransaction transaction) {
+ this.ExecuteCommand(transaction, "DatabaseEntities.ClearExpiredAssociations");
}
}
}