Beispiel #1
0
 public UserRepository(SpotifyDbContext db)
 {
     this._db = db;
 }
Beispiel #2
0
 public PlayListRepository(SpotifyDbContext db)
 {
     this._db = db;
 }
Beispiel #3
0
 public SearchService(SpotifyDbContext db)
 {
     _db = db;
 }
Beispiel #4
0
 public AdminRepository(SpotifyDbContext db)
 {
     this._db = db;
 }
Beispiel #5
0
 public SongRepository(SpotifyDbContext db)
 {
     this._db = db;
 }
Beispiel #6
0
 public AddPlaylistController(SpotifyDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public SelectionService(SpotifyDbContext db)
 {
     _db = db;
 }