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