Sup_AccountController.cs 318 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Mvc;
  6. namespace SupplierWeb.Controllers
  7. {
  8. public class Sup_AccountController : Controller
  9. {
  10. public IActionResult Index()
  11. {
  12. return View();
  13. }
  14. }
  15. }