public TransactionsController(
            IDataService dataService,
            INodeService nodeService,
            IHttpContextHelpers httpContextHelpers)
        {
            this.dataService = dataService;

            this.nodeService = nodeService;

            this.httpContextHelpers = httpContextHelpers;
        }
Beispiel #2
0
        public NodeInfoController(
            IDataService dataService,
            INodeService nodeService,
            IHttpContextHelpers httpContextHelpers)
        {
            this.dataService = dataService;

            this.nodeService = nodeService;

            this.httpContextHelpers = httpContextHelpers;
        }
Beispiel #3
0
        public PeersController(
            IDataService dataService,
            IHttpContextHelpers httpContextHelpers,
            IHttpHelpers httpHelpers)
        {
            this.dataService = dataService;

            this.httpContextHelpers = httpContextHelpers;

            this.httpHelpers = httpHelpers;
        }