Exemple #1
0
 public AccountCommand(Account account,
                       IRepository repository,
                       PassWord_Handle passwordService)
 {
     this.repository      = repository;
     this.account         = account;
     this.passwordService = passwordService;
 }
Exemple #2
0
 public AccountService(IRepository repository,
                       PassWord_Handle passwordService,
                       IMySessionService sessionService)
 {
     this.repository      = repository;
     this.passwordService = passwordService;
     this.sessionService  = sessionService;
 }