TestController.cs 407 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace EMIS.Web.Controllers
  7. {
  8. public class TestController : Controller
  9. {
  10. //
  11. // GET: /Test/
  12. public ActionResult Index()
  13. {
  14. return View();
  15. }
  16. public ActionResult SignName()
  17. {
  18. return View();
  19. }
  20. }
  21. }