123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace KJH55128_Rec.Controllers
- {
- public class FeedBackController : Controller
- {
-
-
-
-
- [Route("feedback.html")]
- public ActionResult FeedBack()
- {
- return View();
- }
- }
- }
|