コード例 #1
0
 public ExerciseController(WtDbContext db)
 {
     this.db = db;
 }
コード例 #2
0
 public AccountController(IConfiguration config, WtDbContext db, IPasswordHasher <User> passwordHasher)
 {
     this.passwordHasher = passwordHasher;
     this.db             = db;
     this.config         = config;
 }
コード例 #3
0
 public SetController(WtDbContext db)
 {
     this.db = db;
 }