using Castle.MVC.Controllers; namespace NPetshop.Presentation { /// /// Summary description for NPetshopControleur. /// public abstract class NPetshopController: Controller { /// /// Get user context. /// public NPetshopState NState { get { return this.State as NPetshopState; } } } }