Пример #1
0
 public SearchController(IBlockInfoRepository blockInfoRepository,
                         TransactionServiceModel transactionServiceModel, AccountServiceModel accountServiceModel)
 {
     _blockInfoRepository     = blockInfoRepository;
     _transactionServiceModel = transactionServiceModel;
     _accountServiceModel     = accountServiceModel;
 }
Пример #2
0
 public BlockServiceModel(IBlockInfoRepository blockInfoRepository,
                          ITransactionRepository transactionRepository)
 {
     _blockInfoRepository   = blockInfoRepository;
     _transactionRepository = transactionRepository;
 }