mirror of https://github.com/Squidex/squidex.git
17 changed files with 90 additions and 116 deletions
@ -1,20 +0,0 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using System; |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
|
|||
namespace Squidex.Infrastructure |
|||
{ |
|||
public sealed class Lazier<T> : Lazy<T> where T : class |
|||
{ |
|||
public Lazier(IServiceProvider provider) |
|||
: base(provider.GetRequiredService<T>) |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue