HomeController.cs 313 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace QueueWriter.Web.Controllers
  7. {
  8. public class HomeController : Controller
  9. {
  10. // GET: Home
  11. public ActionResult Index()
  12. {
  13. return View();
  14. }
  15. }
  16. }