You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

39 lines
816 B

using System;
using System.Collections.Generic;
using System.Text;
namespace CoviDok.BLL
{
// Class is not thread safe, should only be used for testing
class DummyProvider : ISessionProvider
{
private readonly Dictionary<string, string> dict;
public DummyProvider()
{
dict = new Dictionary<string, string>();
}
public void Del(string key)
{
dict.Remove(key);
}
public string Get(string key)
{
try
{
return dict[key];
}
catch (KeyNotFoundException)
{
return null;
}
}
public void Set(string key, string value)
{
dict[key] = value;
}
}
}