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