diff --git a/OpenHarbor.CQRS.AspNetCore/Mvc/MvcBuilderExensions.cs b/OpenHarbor.CQRS.AspNetCore/Mvc/MvcBuilderExensions.cs index dcde62c..187a1f2 100644 --- a/OpenHarbor.CQRS.AspNetCore/Mvc/MvcBuilderExensions.cs +++ b/OpenHarbor.CQRS.AspNetCore/Mvc/MvcBuilderExensions.cs @@ -5,7 +5,7 @@ namespace OpenHarbor.CQRS.AspNetCore.Mvc; public static class MvcBuilderExtensions { - public static IMvcBuilder AddPoweredSoftQueries(this IMvcBuilder builder, Action configuration = null) + public static IMvcBuilder AddOpenHarborQueries(this IMvcBuilder builder, Action configuration = null) { var options = new QueryControllerOptions(); configuration?.Invoke(options); @@ -16,7 +16,7 @@ public static class MvcBuilderExtensions return builder; } - public static IMvcBuilder AddPoweredSoftCommands(this IMvcBuilder builder) + public static IMvcBuilder AddOpenHarborCommands(this IMvcBuilder builder) { var services = builder.Services; var serviceProvider = services.BuildServiceProvider(); diff --git a/OpenHarbor.CQRS.DynamicQuery.AspNetCore/MvcBuilderExtensions.cs b/OpenHarbor.CQRS.DynamicQuery.AspNetCore/MvcBuilderExtensions.cs index 843d1e5..17c0383 100644 --- a/OpenHarbor.CQRS.DynamicQuery.AspNetCore/MvcBuilderExtensions.cs +++ b/OpenHarbor.CQRS.DynamicQuery.AspNetCore/MvcBuilderExtensions.cs @@ -6,7 +6,7 @@ namespace OpenHarbor.CQRS.DynamicQuery.AspNetCore; public static class MvcBuilderExtensions { - public static IMvcBuilder AddPoweredSoftDynamicQueries(this IMvcBuilder builder, Action configuration = null) + public static IMvcBuilder AddOpenHarborDynamicQueries(this IMvcBuilder builder, Action configuration = null) { var options = new DynamicQueryControllerOptions(); configuration?.Invoke(options); diff --git a/README.md b/README.md index 3b963f4..22bbdac 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ +# This project is a fork of [PoweredSoft.CQRS](https://github.com/PoweredSoft/CQRS) + # CQRS -Our implementation of query and command responsability segregation (CQRS). +Our implementation of query and command responsibility segregation (CQRS). ## Getting Started