public UserPlaylistsController(BardcoreContext context, IHostingEnvironment webroot)
 {
     _context = context;
     _webroot = webroot;
 }
Esempio n. 2
0
 public UserProfilesController(BardcoreContext context, UserManager <IdentityUser> userManager, IHostingEnvironment webroot)
 {
     _context     = context;
     _userManager = userManager;
     _webroot     = webroot;
 }
Esempio n. 3
0
 public MusicController(BardcoreContext context, IHostingEnvironment webroot)
 {
     _context = context;
     _webroot = webroot;
 }