Beispiel #1
0
 public EntityRepository(IDbContext context, ILoggerCoreRepository <T, int> log, ICacheCoreRepository <T> cache) : this(context)
 {
     _log   = log;
     _cache = cache;
 }
Beispiel #2
0
 public EntityRepository(IDbContext context, ILoggerCoreRepository <T, int> log) : this(context)
 {
     _log = log;
 }