public RegisterModel(
     UserManager <MyUser> userManager,
     SignInManager <MyUser> signInManager,
     MusicWorldDbContext dbContext)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _dbContext     = dbContext;
 }
 public SongController(MusicWorldDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public CatalogController(MusicWorldDbContext dbContext, UserManager <MyUser> userManager)
 {
     _dbContext   = dbContext;
     _userManager = userManager;
 }
 public PerformerController(MusicWorldDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public AlbumController(MusicWorldDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #6
0
 public UserController(MusicWorldDbContext dbContext)
 {
     _dbContext = dbContext;
 }