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