Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }