public ActionResult Solve(string problemId) { SudokuModel model = new SudokuModel(); model = _problemService.GetProblemByProblemId(problemId); return(View(model)); }