Exemple #1
0
        public EFPersistanceContext(PAWDbContext context)
        {
            this.dbContext = context;

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