using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Mvc;
namespace Everest.CmsServices.Web{
public class KoobooMvcHttpHandler : MvcHttpHandler
{
protected override void ProcessRequest(System.Web.HttpContext httpContext)
{
this.ProcessRequest(new KoobooHttpContextWrapper(httpContext));
}
}
}
|