Files
Umbraco-CMS/src/Umbraco.Web/HealthCheck/HealthCheckNotificationMethodCollectionBuilder.cs

15 lines
590 B
C#
Raw Normal View History

2017-09-08 19:39:13 +02:00
using LightInject;
using Umbraco.Core.Composing;
using Umbraco.Web.HealthCheck.NotificationMethods;
namespace Umbraco.Web.HealthCheck
{
internal class HealthCheckNotificationMethodCollectionBuilder : LazyCollectionBuilderBase<HealthCheckNotificationMethodCollectionBuilder, HealthCheckNotificationMethodCollection, IHealthCheckNotificationMethod>
{
public HealthCheckNotificationMethodCollectionBuilder(IServiceContainer container)
: base(container)
{ }
protected override HealthCheckNotificationMethodCollectionBuilder This => this;
}
}