Esempio n. 1
0
 public TransactionsController(
     IPaginatingService paginating,
     ITransactionService transactions,
     IStateService state)
 {
     this.paginating   = paginating;
     this.transactions = transactions;
     this.state        = state;
 }
Esempio n. 2
0
 public AddressController(IAddressService addresses,
                          IPaginatingService paginating,
                          IStateService state,
                          StateOfNeoContext db)
 {
     this.addresses  = addresses;
     this.paginating = paginating;
     this.state      = state;
     this.db         = db;
 }
 public BlockController(IBlockService blocks, IPaginatingService paginating, IStateService state)
 {
     this.blocks     = blocks;
     this.paginating = paginating;
     this.state      = state;
 }
Esempio n. 4
0
 public AssetsController(IPaginatingService paginating, IAssetService assets)
 {
     this.paginating = paginating;
     this.assets     = assets;
 }