Automated teller machine emulation.
using System.Web.Mvc;
namespace SergeyDrozdovATM.Web.Controllers
{
[Authentication]
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
[AllowAnonymous]
public ActionResult About()
{
return View();
}
}
}