2013-01-03 08:04:19 -01:00
|
|
|
|
using System;
|
2013-01-04 11:03:54 -01:00
|
|
|
|
using System.Web;
|
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
|
using System.Web.Routing;
|
2013-01-03 08:04:19 -01:00
|
|
|
|
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>
|
2013-02-05 05:00:16 +06:00
|
|
|
|
[Obsolete("Use the Umbraco.Web.UI.Controls.UmbracoUserControl instead")]
|
|
|
|
|
|
public abstract class UmbracoUserControl : Umbraco.Web.UI.Controls.UmbracoUserControl
|
2013-01-03 08:04:19 -01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Default constructor
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="umbracoContext"></param>
|
|
|
|
|
|
protected UmbracoUserControl(UmbracoContext umbracoContext)
|
2013-02-05 05:00:16 +06:00
|
|
|
|
: base(umbracoContext)
|
2013-01-03 08:04:19 -01:00
|
|
|
|
{
|
2013-02-05 05:00:16 +06:00
|
|
|
|
|
2013-01-03 08:04:19 -01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Empty constructor, uses Singleton to resolve the UmbracoContext
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
protected UmbracoUserControl()
|
2013-02-05 05:00:16 +06:00
|
|
|
|
: base()
|
2013-01-03 08:04:19 -01:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|