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.
38 lines
751 B
38 lines
751 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CoviDok.BLL
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|