You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
651 B

2 years ago
  1. using Microsoft.AspNetCore.Mvc;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace Origtek_OS.Controllers
  7. {
  8. public class ServicesController : Controller
  9. {
  10. public IActionResult Item1()
  11. {
  12. return View();
  13. }
  14. public IActionResult Item2()
  15. {
  16. return View();
  17. }
  18. public IActionResult Item3()
  19. {
  20. return View();
  21. }
  22. public IActionResult Item4()
  23. {
  24. return View();
  25. }
  26. public IActionResult Item5()
  27. {
  28. return View();
  29. }
  30. }
  31. }