Exemplo n.º 1
0
        public IActionResult BlockChain()
        {
            var blocks = _repository.GetAll();

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