public EntityRepository(IDbContext context, ILoggerCoreRepository <T, int> log, ICacheCoreRepository <T> cache) : this(context) { _log = log; _cache = cache; }
public LiteRepository(ILiteContext context, ICacheCoreRepository <T> cache) { _cache = cache; }
public EntityRepository(IDbContext context, ICacheCoreRepository <T> cache) : this(context) { _cache = cache; }