Beispiel #1
0
 public HomeController(INodeComService _nodecom, IAuthService _authService, UASContext context, IWalletUtil walletUtil)
 {
     nodeCom         = _nodecom;
     authService     = _authService;
     this.context    = context;
     this.walletUtil = walletUtil;
 }
Beispiel #2
0
 public CompetitionService(IHostingEnvironment environment, MemeOffContext context, INodeComService nodeCom, UASContext uasContext)
 {
     this._environment = environment;
     this._context     = context;
     _nodeCom          = nodeCom;
     _uasContext       = uasContext;
 }
 public WalletInfoViewComponent(UASContext context, INodeComService nodeComService)
 {
     this.context        = context;
     this.nodeComService = nodeComService;
 }
Beispiel #4
0
 public GetBalanceViewComponent(INodeComService _nodeCom)
 {
     nodeCom = _nodeCom;
 }