示例#1
0
 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;
 }
示例#3
0
 public ServicenodeController(IXRouterService xrouterService, IServicenodeService servicenodeService)
 {
     this.xrouterService     = xrouterService;
     this.servicenodeService = servicenodeService;
 }