You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
648 B
32 lines
648 B
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Origtek_OS.Controllers
|
|
{
|
|
public class AboutController : Controller
|
|
{
|
|
public IActionResult Item1()
|
|
{
|
|
return View();
|
|
}
|
|
public IActionResult Item2()
|
|
{
|
|
return View();
|
|
}
|
|
public IActionResult Item3()
|
|
{
|
|
return View();
|
|
}
|
|
public IActionResult Item4()
|
|
{
|
|
return View();
|
|
}
|
|
public IActionResult Item5()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|