diff --git a/README.md b/README.md index 6ec32fa..4b41ed3 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Our implementation of query and command responsibility segregation (CQRS). ```csharp public void ConfigureServices(IServiceCollection services) { - // make sure to add your queries and commands before the .AddPoweredSoftQueries and .AddPoweredSoftCommands + // make sure to add your queries and commands before configuring MvCBuilder with .AddOpenHarborCommands and .AddOpenHarborQueries AddQueries(services); AddCommands(services); @@ -68,7 +68,7 @@ private void AddQueries(IServiceCollection services) We use fluent validation in all of our projects, but we don't want it to be enforced. -If you install. ```PoweredSoft.CQRS.FluentValidation``` you can use this way of registrating your commands. +If you install ```OpenHarbor.CQRS.FluentValidation``` you can use this way of registrating your commands. ```csharp public void ConfigureServices(IServiceCollection services) @@ -81,7 +81,7 @@ public void ConfigureServices(IServiceCollection services) public void ConfigureServices(IServiceCollection services) { // with PoweredSoft.CQRS.FluentValidation package. - services.AddCommandWithValidator(); + services.AddCommand(); } ```