public CoinController(IMapper mapper, IHubContext <ListUnspentHub> hub, IEnumerable <ICoinService> coinServices, IXRouterService xRouterService) { _mapper = mapper; _coinServices = coinServices; _xRouterService = xRouterService; _hub = hub; }
public XRouterController( IMapper mapper, IXRouterService xrouterService ) { this.mapper = mapper; this.xrouterService = xrouterService; }
public ServicenodeController(IXRouterService xrouterService, IServicenodeService servicenodeService) { this.xrouterService = xrouterService; this.servicenodeService = servicenodeService; }