예제 #1
0
 public TransactionService(ITransactionRepository transactionRepository,
                           IErc20TransferHistoryService erc20TransferHistoryService)
 {
     _erc20TransferHistoryService = erc20TransferHistoryService;
     _transactionRepository       = transactionRepository;
 }
예제 #2
0
 public Erc20TransferHistoryController(IErc20TransferHistoryService transferHistoryService)
 {
     _transferHistoryService = transferHistoryService;
 }