using System; using System.Web; using System.Web.Mvc; using System.Web.Routing; using System.Web.UI; using Umbraco.Core; using Umbraco.Core.Services; namespace Umbraco.Web { /// /// A base class for all Presentation UserControls to inherit from /// [Obsolete("Use the Umbraco.Web.UI.Controls.UmbracoUserControl instead")] public abstract class UmbracoUserControl : Umbraco.Web.UI.Controls.UmbracoUserControl { /// /// Default constructor /// /// protected UmbracoUserControl(UmbracoContext umbracoContext) : base(umbracoContext) { } /// /// Empty constructor, uses Singleton to resolve the UmbracoContext /// protected UmbracoUserControl() : base() { } } }