public IActionResult List()
        {
            var calcs = _calcRepository.GetAll();

            return(View(calcs));
        }