public IActionResult Get() { IEnumerable <TestResult> tests = _testRepo.GetAll(); if (!(tests is null)) { return(Ok(tests)); }