using System; using NPetshop.Presentation.Core; namespace NPetshop.Presentation.UserActions { /// /// Summary description for ShowStartPageAction. /// public class ShowStartPageAction : AbstractWebAction { public ShowStartPageAction(System.Web.HttpContext context) : base(context) { nextViewToDisplay = WebViews.STARTUP; } } }