選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ServiceController.cs 242B

12345678910111213141516
  1. using Microsoft.AspNetCore.Mvc;
  2. namespace EndPoint.Site.Controllers
  3. {
  4. public class ServiceController : Controller
  5. {
  6. public IActionResult Index()
  7. {
  8. return View();
  9. }
  10. public IActionResult Detail()
  11. {
  12. return View();
  13. }
  14. }
  15. }