public EFPersistanceContext(PAWDbContext context) { this.dbContext = context; SongRepository = new EFSongRepository(context); QuizRepository = new EFQuizRepository(context); }
public EFSongRepository(PAWDbContext dbContext) : base(dbContext) { }
public HistoryController(SongService songService, PAWDbContext _context) { this.songService = songService; context = _context; }
public EFBaseRepository(PAWDbContext dbContext) { this.dbContext = dbContext; }
public EFQuizRepository(PAWDbContext dbContext) : base(dbContext) { }
public WishlistController(SongService songService, PAWDbContext _context) { this.songService = songService; context = _context; }