Exemplo n.º 1
0
 public CoinService(IUnitOfWork unitOfWork, IBlockGraphService blockGraphService, IHttpService httpService, ILogger <CoinService> logger)
 {
     this.unitOfWork        = unitOfWork;
     this.blockGraphService = blockGraphService;
     this.httpService       = httpService;
     this.logger            = logger;
 }
 public BlockGraphController(IBlockGraphService blockGraphService, IHttpService httpService,
                             INetworkActorProvider networkProvider, IUnitOfWork unitOfWork, ILogger <BlockGraphController> logger)
 {
     this.blockGraphService = blockGraphService;
     this.httpService       = httpService;
     this.networkProvider   = networkProvider;
     this.unitOfWork        = unitOfWork;
     this.logger            = logger;
 }