using System; using Castle.MVC.Views; using NPetshop.Presentation; namespace NPetshop.Web.UserControls { /// /// An NPetshop User Control /// public class NPetshopUC : WebUserControlView { /// /// Get user context. /// public NPetshopState NPetshopState { get { return this.State as NPetshopState; } } } }