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(); } } }