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.
 
 
 
 

29 lines
572 B

using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Origtek_OS.Controllers
{
public class ApplicationsController : Controller
{
public IActionResult Item1()
{
return View();
}
public IActionResult Item2()
{
return View();
}
public IActionResult Item3()
{
return View();
}
public IActionResult Item4()
{
return View();
}
}
}