using System; using Castle.MVC.Views; using NPetshop.Presentation; namespace NPetshop.Web.Views { /// /// An NPetshop view. /// public class NPetshopView : WebFormView { public NPetshopView() { this.Load+=new EventHandler(this.NPetshopView_Load); } private void NPetshopView_Load(object sender, EventArgs e) { this.RegisterClientScriptBlock("basefix", ""); } /// /// Get user context. /// public NPetshopState NPetshopState { get { return this.State as NPetshopState; } } } }