.NET Portable TypeCast  3.1.0.4
A, easy-to-use tested, generic, portable, runtime-extensible, arbitrary type converter library
IRepositoryEnumerable.cs
Go to the documentation of this file.
1 // <copyright file=mitlicense.md url=http://lsauer.mit-license.org/ >
2 // Lo Sauer, 2013-2016
3 // </copyright>
4 // <summary> A tested, generic, portable, runtime-extensible type converter library </summary
5 // <language> C# > 6.0 </language>
6 // <version> 3.1.0.2 </version>
7 // <author> Lorenz Lo Sauer; people credited in the sources </author>
8 // <project> https://github.com/lsauer/dotnet-portable-type-cast </project>
9 namespace Core.TypeCast
10 {
11  using System;
12  using System.Collections;
13 
14  using Core.TypeCast.Base;
15 
31  public interface IRepositoryEnumerable<out TOut> : IRepository<TOut> where TOut : IEnumerable { }
32 
37  public interface IRepositoryEnumerable<in TId1, out TOut> : IRepository<TId1, TOut> where TOut : IEnumerable { }
38 
44  public interface IRepositoryEnumerable<in TId1, in TId2, out TOut> : IRepository<TId1, TId2, TOut> where TOut : IEnumerable { }
45 
46 }
The base repository interface
Definition: IRepository.cs:18
The generic repository interface with one lookup identifier