Ejemplo n.º 1
0
 public UpdateAccountCommand(IBot bot, IAccountService accountService,
                             IBotUIService botUIService, IAccountUpdatingService accountUpdatingService,
                             IUserService userService, IMapper mapper) : base(bot)
 {
     this.accountService         = accountService;
     this.botUIService           = botUIService;
     this.accountUpdatingService = accountUpdatingService;
     this.userService            = userService;
     this.mapper = mapper;
 }
Ejemplo n.º 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;
 }