12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Mvc;
- namespace Edge.WebHost.Controllers
- {
- public class FairBanksController : Controller
- {
-
- public IActionResult Index()
- {
- return View("../WebConsole/FairBanks/Index");
- }
- }
- }
|