From e398d58f60bdc4cc81b8277238c5161d02b7bd6f Mon Sep 17 00:00:00 2001 From: James Croft Date: Wed, 27 Apr 2022 14:47:16 +0100 Subject: [PATCH] Altered collection based constructor for FluentValidatorCollection to support interface --- .../FluentValidatorCollection{T}.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MADE.Data.Validation.FluentValidation/FluentValidatorCollection{T}.cs b/src/MADE.Data.Validation.FluentValidation/FluentValidatorCollection{T}.cs index 818e1965..2b7485cb 100644 --- a/src/MADE.Data.Validation.FluentValidation/FluentValidatorCollection{T}.cs +++ b/src/MADE.Data.Validation.FluentValidation/FluentValidatorCollection{T}.cs @@ -23,7 +23,7 @@ public FluentValidatorCollection() /// Initializes a new instance of the class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied. /// The collection whose elements are copied to the new list. /// collection is null. - public FluentValidatorCollection(IEnumerable> collection) + public FluentValidatorCollection(IEnumerable> collection) : base(collection) { }