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.
16 lines
315 B
16 lines
315 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CoviDok.BLL.Sessions
|
|
{
|
|
interface ISessionProvider
|
|
{
|
|
public void Set(string key, string value);
|
|
|
|
// Returns null if not found
|
|
public string Get(string key);
|
|
|
|
public void Del(string key);
|
|
}
|
|
}
|
|
|