From 589d81502b654abf65ce9df6bac146e301daea92 Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Sat, 4 Nov 2023 16:08:39 -0400 Subject: [PATCH] update doc a little bit and change PoweredSoft to OpenHarbor in a few methods --- OpenHarbor.CQRS.AspNetCore/Mvc/MvcBuilderExensions.cs | 4 ++-- .../MvcBuilderExtensions.cs | 2 +- README.md | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) 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