LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using System.Collections.Generic; 2 : 3 : namespace Cqrs.Repositories.Queries 4 : { 5 : public class QueryPredicate : IQueryPredicateData 6 0 : { 7 : #region Implementation of IQueryPredicateData 8 : 9 : public string Name { get; internal set; } 10 : 11 : public SortedSet<QueryParameter> Parameters { get; internal set; } 12 : 13 : #endregion 14 : 15 0 : public QueryPredicate() 16 : { 17 : Parameters = new SortedSet<QueryParameter>(); 18 : } 19 : } 20 : } |
Generated by: LCOV version 1.10 |