/src/MM.Web/Controllers/AccountController.cs
# · C# · 25 lines · 19 code · 4 blank · 2 comment · 0 complexity · a8b9d28c163df5439e6a9200aabbfd9e MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
-
- namespace MM.Web.Controllers
- {
- public class AccountController : Controller, ICustomerController
- {
- //
- // GET: /Account/
-
- public ActionResult Index()
- {
- return View();
- }
-
- public ActionResult LogOn()
- {
- return View();
- }
-
- }
- }