예제 #1
0
 public TokenController(SignInManager <AppUser> signInManager, UserManager <AppUser> userManager, IConfiguration configuration, LetsSetUpContext db)
 {
     _signInManager = signInManager;
     _userManager   = userManager;
     _configuration = configuration;
     _db            = db;
 }
예제 #2
0
 public FiltersController(LetsSetUpContext db)
 {
     _db = db;
 }
 public CategoriesController(LetsSetUpContext db)
 {
     _db = db;
 }
예제 #4
0
 public CommentsController(LetsSetUpContext db)
 {
     _db = db;
 }
 public NotificationsController(LetsSetUpContext db)
 {
     _db = db;
 }
예제 #6
0
 public SignUpsController(LetsSetUpContext db)
 {
     _db = db;
 }