KJHController.cs 420 B

1234567891011121314151617181920212223
  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 KJHController : Controller
  12. {
  13. [Route("kjh/index.html")]
  14. [Route("kjh/index")]
  15. public ActionResult Index()
  16. {
  17. return View();
  18. }
  19. }
  20. }