Line data Source code
1 : using System.Collections.Generic;
2 :
3 : namespace Cqrs.Repositories.Queries
4 : {
5 : public class CollectionResultQuery<TQueryStrategy, TData> : ICollectionResultQuery<TQueryStrategy, TData>
6 : where TQueryStrategy : IQueryStrategy
7 0 : {
8 : #region Implementation of IQueryWithStrategy<TParameters>
9 :
10 : public TQueryStrategy QueryStrategy { get; set; }
11 :
12 : #endregion
13 :
14 : #region Implementation of IQueryWithResults<out TResult>
15 :
16 : public IEnumerable<TData> Result { get; internal set; }
17 :
18 : #endregion
19 : }
20 : }
|