13 lines
196 B
C#
13 lines
196 B
C#
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
|||
|
namespace UniversityRestAPI.Controllers
|
|||
|
{
|
|||
|
public class EducationStatusController : Controller
|
|||
|
{
|
|||
|
public IActionResult Index()
|
|||
|
{
|
|||
|
return View();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|