Skip to content

Instantly share code, notes, and snippets.

View Chuhukon's full-sized avatar
:octocat:

Marvelous Solutions Chuhukon

:octocat:
View GitHub Profile
@Chuhukon
Chuhukon / EPiServer personalisation example code
Last active November 17, 2015 20:50
Cross session personalisation with EPiServer
public abstract class BaseRepository : IDisposable
{
protected IDbConnection Connection { get; set; }
private bool _disposed;
protected ILog Log
{
get { return LogManager.GetLogger(GetType()); }
}