Exemplo n.º 1
0
 public PasswordChangerService(IPasswordDatabase passwordDatabase,
                               IPasswordChangerExFactory passwordChangerFactory,
                               IHostTypeMapper hostTypeMapper)
 {
     this.passwordDatabase       = passwordDatabase;
     this.passwordChangerFactory = passwordChangerFactory;
     this.hostTypeMapper         = hostTypeMapper;
 }
 public IPasswordChangerService Create(IHostTypeMapper hostTypeMapper)
 {
     return(new PasswordChangerService(this.passwordDatabase, this.passwordChangerFactory, hostTypeMapper, this.clock));
 }