예제 #1
0
 public HomeController(INodeComService _nodecom, IAuthService _authService, UASContext context, IWalletUtil walletUtil)
 {
     nodeCom         = _nodecom;
     authService     = _authService;
     this.context    = context;
     this.walletUtil = walletUtil;
 }
예제 #2
0
 public TransactionUtil(IWalletUtil walletUtil)
 {
     this.walletUtil = walletUtil;
 }
예제 #3
0
 public AuthService(UASContext _context, ITransactionUtil _transactionUtil, IWalletUtil _walletUtil)
 {
     context         = _context;
     transactionUtil = _transactionUtil;
     walletUtil      = _walletUtil;
 }