Exemple #1
0
 public CalendarRepository(ApplicationDbContext db, ListingRepository listingRepository)
 {
     this._db = db;
     this._listingRepository = listingRepository;
 }
Exemple #2
0
 public StatsRepository(ApplicationDbContext db, ListingRepository listingRepository, ICache cache)
 {
     _db = db;
     _listingRepository = listingRepository;
     _cache             = cache;
 }