public BalanceTransferController()
 {
     balanceTransferService = new Core.BalanceTransferService();
 }
示例#2
0
 public void LoginAllServices(AccountService accountService, ProfileService profileService, BalanceTransferService balanceTransferService, TransferService transferService)
 {
     accountService.Login(this.client.Authenticator);
     profileService.Login(this.client.Authenticator);
     balanceTransferService.Login(this.client.Authenticator);
     transferService.Login(this.client.Authenticator);
 }