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