Exemple #1
0
        public IActionResult BlockChain()
        {
            var blocks = _repository.GetAll();

            return(View(blocks));
        }
Exemple #2
0
 private IList <Repository.Dto.BlockDto> GetAll(string accept)
 {
     return(repository.GetAll());
 }