Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="Chinchilla Software Limited">
4 : // // Copyright Chinchilla Software Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System;
10 : using System.Collections.Generic;
11 :
12 : namespace Cqrs.Repositories.Queries
13 : {
14 : /// <summary>
15 : /// A query that will produce a result that contains a collection of <typeparamref name="TData"/> items.
16 : /// </summary>
17 : /// <typeparam name="TQueryStrategy">The <see cref="Type"/> of the <see cref="IQueryStrategy"/>.</typeparam>
18 : /// <typeparam name="TData">The <see cref="Type"/> of data in the result collection.</typeparam>
19 : public class CollectionResultQuery<TQueryStrategy, TData>
20 : : ResultQuery<TQueryStrategy, IEnumerable<TData>>
21 : , ICollectionResultQuery<TQueryStrategy, TData>
22 : where TQueryStrategy : IQueryStrategy
23 1 : {
24 : }
25 : }
|