示例#1
0
 public PlaylistController(SpotisticsDbContext context)
 {
     _context = context;
     _spotisticsService = new SpotisticsService(_context);
 }
 public TopArtistsController(SpotisticsDbContext context)
 {
     _context           = context;
     _spotisticsService = new SpotisticsService(context);
 }
示例#3
0
 public AccountController(SpotisticsDbContext context)
 {
     _context        = context;
     _spotifyService = new SpotisticsService(context);
 }