Exemplo n.º 1
0
        public ActionResult About()
        {
            var model = new TableVIewModel();

            OperationResultRepository = new OperationManager();
            model.ViewList            = OperationResultRepository.GetAll();

            return(View(model));
        }
Exemplo n.º 2
0
        public IActionResult Results()
        {
            var model = _repository.GetAll();

            return(View(model));
        }