36 lines
896 B
C#
36 lines
896 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// A base class for all Presentation UserControls to inherit from
|
|
/// </summary>
|
|
[Obsolete("Use the Umbraco.Web.UI.Controls.UmbracoUserControl instead")]
|
|
public abstract class UmbracoUserControl : Umbraco.Web.UI.Controls.UmbracoUserControl
|
|
{
|
|
/// <summary>
|
|
/// Default constructor
|
|
/// </summary>
|
|
/// <param name="umbracoContext"></param>
|
|
protected UmbracoUserControl(UmbracoContext umbracoContext)
|
|
: base(umbracoContext)
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Empty constructor, uses Singleton to resolve the UmbracoContext
|
|
/// </summary>
|
|
protected UmbracoUserControl()
|
|
: base()
|
|
{
|
|
}
|
|
|
|
}
|
|
} |