mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 10:15:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			502 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			502 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Diagnostics;
 | |
| using Microsoft.AspNetCore.Mvc;
 | |
| using HaWeb.Models;
 | |
| 
 | |
| namespace HaWeb.Controllers;
 | |
| 
 | |
| public class SucheController : Controller {
 | |
| 
 | |
|     [Route("Suche")]
 | |
|     public IActionResult Index() {
 | |
|         return View();
 | |
|     }
 | |
| 
 | |
|     [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
 | |
|     public IActionResult Error() {
 | |
|         return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
 | |
|     }
 | |
| }
 | 
