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

16 lines
591 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;
}
2017-09-23 10:08:18 +02:00
}