Подготовил направления
This commit is contained in:
15
PaydayFrontend/Controllers/AdminController.cs
Normal file
15
PaydayFrontend/Controllers/AdminController.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System.Diagnostics;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using PaydayFrontend.Models;
|
||||
|
||||
namespace PaydayFrontend.Controllers;
|
||||
|
||||
public class AdminController : Controller
|
||||
{
|
||||
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
public IActionResult Error()
|
||||
{
|
||||
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
|
||||
}
|
||||
}
|
@ -28,12 +28,19 @@ public class HomeController : Controller
|
||||
return View(universities.ToList());
|
||||
}
|
||||
|
||||
public IActionResult SecondPage([FromQuery] long universityId)
|
||||
[Route("Directions")]
|
||||
public IActionResult Directions(long universityId)
|
||||
{
|
||||
Console.WriteLine(universityId);
|
||||
if (universityId == 0)
|
||||
return RedirectToAction("Index");
|
||||
|
||||
|
||||
|
||||
return View();
|
||||
}
|
||||
|
||||
public IActionResult ThirdPage()
|
||||
public IActionResult Credits()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
Reference in New Issue
Block a user