Exemplo n.º 1
0
 public LampsController(LampsContext db) //DI...
 {
     this.db = db;
 }
Exemplo n.º 2
0
 public AccountController(LampsContext db, IPasswordHasher <User> passwordHasher) //DI...
 {
     this.db             = db;
     this.passwordHasher = passwordHasher;
 }