Example #1
0
 public AuthorController(BookWebContext context)
 {
     _context = context;
 }
Example #2
0
 public BookController(BookWebContext context)
 {
     _context = context;
 }
Example #3
0
 public DataSeeder(UserManager<BookWebUser> userManager, BookWebContext context, IOptions<PicturesFolder> options)
 {
     _userManager = userManager;
     _context = context;
     _options = options;
 }
Example #4
0
 public UserController(BookWebContext context)
 {
     _context = context;
 }
Example #5
0
 public ImageController(BookWebContext context)
 {
     _context = context;
 }