public SongController()
 {
     _db = new MusicPortalDbContext();
     _mngr = new SongManager(_db);
     _helper = new HttpResponseHelper<SongVM>(this);
     _heartpler = new HttpResponseHelper<HeartedSongVM>(this);
 }
 public TestController()
 {
     _db = new MusicPortalDbContext();
 }
 public UserManager() {
     _db = new MusicPortalDbContext();
 }
 public PlaylistsController()
 {
     _db = new MusicPortalDbContext();
     _mngr = new PlaylistManager(_db);
 }
 public PlaylistManager(MusicPortalDbContext db) {
     _db = db;
 }