using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.SessionState; using Castle.ActiveRecord; using ECOEarth.Web.Domain; namespace ECOEarth.Web { public class Global : System.Web.HttpApplication { protected void Application_Start(object sender, EventArgs e) { ActiveRecordStarter.Initialize(); } protected void Application_End(object sender, EventArgs e) { } protected void Session_Start() { Session["OrderBasket"] = new OrderBasket(); } } }