Initial Commit ...

This commit is contained in:
2024-01-25 04:39:39 +03:30
commit c743026b3c
42 changed files with 3954 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
using Microsoft.Extensions.DependencyInjection;
using xCommons.Providers;
public static partial class XDIHelperExtension {
/// <summary>
/// Register XCommons Module Services
/// </summary>
/// <param name="services"></param>
public static void AddXCommons (this IServiceCollection services) {
services.AddSingleton<XValidationProvider> ();
}
}