PageRenderTime 40ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/src/MM.Web/Controllers/AccountController.cs

#
C# | 25 lines | 19 code | 4 blank | 2 comment | 0 complexity | a8b9d28c163df5439e6a9200aabbfd9e MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace MM.Web.Controllers
  7. {
  8. public class AccountController : Controller, ICustomerController
  9. {
  10. //
  11. // GET: /Account/
  12. public ActionResult Index()
  13. {
  14. return View();
  15. }
  16. public ActionResult LogOn()
  17. {
  18. return View();
  19. }
  20. }
  21. }