8 lines
179 B
C#
8 lines
179 B
C#
using System.Collections.Generic;
|
|
namespace Kreta.DataAccess.Interfaces
|
|
{
|
|
public interface IAssociatedCollection<out TEntityType> : IEnumerable<TEntityType>
|
|
{
|
|
|
|
}
|
|
}
|