diff --git a/.vs/DigitalData.Core/v17/.futdcache.v2 b/.vs/DigitalData.Core/v17/.futdcache.v2
index 08a29a1..235c053 100644
Binary files a/.vs/DigitalData.Core/v17/.futdcache.v2 and b/.vs/DigitalData.Core/v17/.futdcache.v2 differ
diff --git a/.vs/DigitalData.Core/v17/.suo b/.vs/DigitalData.Core/v17/.suo
index d9e1be3..63350ac 100644
Binary files a/.vs/DigitalData.Core/v17/.suo and b/.vs/DigitalData.Core/v17/.suo differ
diff --git a/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 b/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1
index 8a6ec67..44e57a4 100644
Binary files a/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 and b/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 differ
diff --git a/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 b/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1
index fb6b85d..db755c6 100644
Binary files a/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 and b/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 differ
diff --git a/DigitalData.Core.Application/EnumerableExtensoins.cs b/DigitalData.Core.Application/EnumerableExtensoins.cs
new file mode 100644
index 0000000..e3863af
--- /dev/null
+++ b/DigitalData.Core.Application/EnumerableExtensoins.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DigitalData.Core.Application
+{
+ ///
+ /// Provides extension methods for IEnumerable.
+ ///
+ public static class EnumerableExtensions
+ {
+ ///
+ /// Concatenates the members of a collection, using the specified separator between each member.
+ ///
+ /// The type of the elements of the enumerable.
+ /// The IEnumerable whose elements to concatenate.
+ /// The string to use as a separator. Separator is included in the returned string only between elements of the collection.
+ /// A string that consists of the elements in the collection delimited by the separator string. If the collection is empty, the method returns String.Empty.
+ public static string Join(this IEnumerable enumerable, string separator = ". ") => string.Join(separator, enumerable);
+ }
+}
\ No newline at end of file