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