FairBanksController.cs 491 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Mvc;
  6. // For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
  7. namespace Applications.UniversalApi_WebConsole_App.Controllers
  8. {
  9. public class FairBanksController : Controller
  10. {
  11. // GET: /<controller>/
  12. public IActionResult Index()
  13. {
  14. return View();
  15. }
  16. }
  17. }