示例#1
0
 public LoginHandler(UserDbContext userContext, IQueryProjectId queryProject, IPasswordHasher hasher)
 {
     this.userContext  = userContext;
     this.queryProject = queryProject;
     this.hasher       = hasher;
 }
示例#2
0
 public SignupHandler(UserDbContext dbContext, IPasswordHasher passwordHasher, IQueryProjectId projectQuery)
 {
     this.dbContext      = dbContext;
     this.passwordHasher = passwordHasher;
     this.projectQuery   = projectQuery;
 }