Exemple #1
0
 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;
 }
Exemple #3
0
 public EntityRepository(IDbContext context, ICacheCoreRepository <T> cache) : this(context) { _cache = cache; }