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.
21 lines
489 B
21 lines
489 B
4 years ago
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using System.Threading.Tasks;
|
||
|
using Microsoft.Extensions.Logging;
|
||
|
using AMESCoreStudio.Web.Models;
|
||
|
using Newtonsoft.Json;
|
||
|
using AMESCoreStudio.WebApi;
|
||
|
using System.Collections.Generic;
|
||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||
|
using AMESCoreStudio.WebApi.Models.AMES;
|
||
|
|
||
|
namespace AMESCoreStudio.Web.Controllers
|
||
|
{
|
||
|
public class PCSController : Controller
|
||
|
{
|
||
|
public IActionResult Index()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
}
|
||
|
}
|