Ejemplo n.º 1
0
 protected BaseRepository(IPlaygroundDbContext dbContext, ICacheService cacheService)
 {
     Db     = dbContext;
     Cache  = cacheService;
     Logger = LoggerManager.GetLogger();
 }
Ejemplo n.º 2
0
 protected BaseRepository(IPlaygroundDbContext dbContext, ICacheService cacheService, ILogger logger)
 {
     Db     = dbContext;
     Cache  = cacheService;
     Logger = logger;
 }
Ejemplo n.º 3
0
 public FacilityRepository(IPlaygroundDbContext dbContext) : base(dbContext)
 {
 }
Ejemplo n.º 4
0
 protected BaseRepository(IPlaygroundDbContext dbContext)
 {
     Db     = dbContext;
     Logger = LoggerManager.GetLogger();
 }
Ejemplo n.º 5
0
 public FacilityRepository(IPlaygroundDbContext dbContext, ICacheService cacheService) : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 6
0
 protected BaseRepository(IPlaygroundDbContext dbContext)
 {
     Db = dbContext;
 }
Ejemplo n.º 7
0
 public SiteRepository(IPlaygroundDbContext dbContext)
     : base(dbContext)
 {
 }
 public UserProfileRepository(IPlaygroundDbContext dbContext, ICacheService cacheService) : base(dbContext, cacheService)
 {
 }
 public UserProfileRepository(IPlaygroundDbContext dbContext) : base(dbContext)
 {
 }