Exemple #1
0
 public ShowAccountCommand(IGetAccountById getAccount)
 {
     this.getAccount = getAccount;
 }
Exemple #2
0
 public WithdrawAccountCommand(IGetAccountById getAccount)
 {
     this.getAccount = getAccount;
 }
Exemple #3
0
 public CreateLineCommand(IBetLineFactory lineFactory, IAddLine addLine, IGetAccountById getAccountById)
 {
     this.lineFactory    = lineFactory;
     this.lines          = addLine;
     this.getAccountById = getAccountById;
 }
 public ChangeAccountRakeCommand(IGetAccountById getAccount)
 {
     this.getAccount = getAccount;
 }
 public DepositAccountCommand(IGetAccountById getAccount)
 {
     this.getAccount = getAccount;
 }