SJHController.cs 419 B

12345678910111213141516171819202122
  1. 
  2. using M55128_rec.Models.ViewModels.GallerMangerModel;
  3. using Models;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Web;
  8. using System.Web.Mvc;
  9. namespace M55128_rec.Controllers
  10. {
  11. public class SJHController : Controller
  12. {
  13. [Route("sjh/index.html")]
  14. [Route("sjh/index")]
  15. public ActionResult Index()
  16. {
  17. return View();
  18. }
  19. }
  20. }