Rename DI to Composing

This commit is contained in:
Stephan
2017-05-30 15:46:25 +02:00
parent b251d23a57
commit 81234cd702
229 changed files with 265 additions and 265 deletions

View File

@@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace Umbraco.Core.Composing
{
/// <summary>
/// Represents a builder collection, ie an immutable enumeration of items.
/// </summary>
/// <typeparam name="TItem">The type of the items.</typeparam>
public interface IBuilderCollection<out TItem> : IEnumerable<TItem>
{
/// <summary>
/// Gets the number of items in the collection.
/// </summary>
int Count { get; }
}
}