コード例 #1
0
 public ShowPasswordCommand(IBot bot,
                            IAccountService accountService,
                            IPasswordDecryptionService passwordDecryptionService,
                            IUserService userService)
     : base(bot)
 {
     this.accountService            = accountService;
     this.passwordDecryptionService = passwordDecryptionService;
     this.userService = userService;
 }
コード例 #2
0
 public CancelCommand(IBot bot,
                      IUserService userService,
                      IAccountAssemblingService accountAssemblingService,
                      IAccountUpdatingService accountUpdatingService,
                      IPasswordDecryptionService passwordDecryptionService,
                      IPasswordEncryptionService passwordEncryptionService)
     : base(bot)
 {
     this.userService = userService;
     this.accountAssemblingService  = accountAssemblingService;
     this.accountUpdatingService    = accountUpdatingService;
     this.passwordDecryptionService = passwordDecryptionService;
     this.passwordEncryptionService = passwordEncryptionService;
 }