Files
LeafWeb/Web/Controllers/PagesController.cs
T

20 lines
311 B
C#

using System;
using System.Drawing;
using System.IO;
using System.Web.Mvc;
namespace LeafWeb.Web.Controllers
{
public class PagesController : Controller
{
public ActionResult Index()
{
return View();
}
public ActionResult Information()
{
return View();
}
}
}