From c8c2c4563ff740a6d1b15df4b935a5c410dbeb19 Mon Sep 17 00:00:00 2001 From: adamjstone <8525409+adamjstone@users.noreply.github.com> Date: Wed, 9 Sep 2020 02:14:06 -0500 Subject: [PATCH] #371 Minor documentation changes. --- example/README.md | 10 +++++----- .../README.md | 2 +- .../ApplicationServiceExecutor.cs | 2 +- .../README.md | 2 +- .../CommandHandlerModule.cs | 2 +- .../DatabaseContext.cs | 4 ++-- .../DatabaseContextDependencyModule.cs | 3 ++- .../DatabaseContextRepositoryFactory.cs | 3 ++- .../EventHandlerModule.cs | 2 +- .../README.md | 2 +- .../ApplicationServiceExecutor.cs | 2 +- .../README.md | 2 +- .../DatabaseContext.cs | 4 ++-- .../DatabaseContextDependencyModule.cs | 3 ++- .../EventHandlerModule.cs | 2 +- .../ModelState/User/DomainModelCreatedEventHandler.cs | 4 ++-- .../ModelState/User/DomainModelDeletedEventHandler.cs | 4 ++-- .../ModelState/User/DomainModelUpdatedEventHandler.cs | 4 ++-- .../UserRole/DomainModelCreatedEventHandler.cs | 4 ++-- .../UserRole/DomainModelDeletedEventHandler.cs | 4 ++-- .../UserRole/DomainModelUpdatedEventHandler.cs | 4 ++-- .../DomainModelCreatedEventHandler.cs | 4 ++-- .../DomainModelDeletedEventHandler.cs | 4 ++-- .../DomainModelUpdatedEventHandler.cs | 4 ++-- .../README.md | 2 +- 25 files changed, 43 insertions(+), 40 deletions(-) diff --git a/example/README.md b/example/README.md index e0c130a1..034c3fb5 100644 --- a/example/README.md +++ b/example/README.md @@ -15,11 +15,11 @@ This path contains sample projects that utilize the **Solid Instruments** [const - [`RapidField.SolidInstruments.Example.BeaconService`](/example/RapidField.SolidInstruments.Example.BeaconService) demonstrates a utility service that publishes scheduled heartbeat messages. - [`RapidField.SolidInstruments.Example.Domain`](/example/RapidField.SolidInstruments.Example.Domain) houses a sample collection of shared domain models that utilize the **Solid Instruments** [messaging](../src/RapidField.SolidInstruments.Messaging/README.md) constructs. -- [`RapidField.SolidInstruments.Example.Domain.AccessControl`](/example/RapidField.SolidInstruments.Example.Domain.AccessControl) demonstrates AccessControl domain logic utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) constructs. -- [`RapidField.SolidInstruments.Example.Domain.AccessControl.HttpApi`](/example/RapidField.SolidInstruments.Example.Domain.AccessControl.HttpApi) demonstrates an AccessControl domain HTTP API utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../src/RapidField.SolidInstruments.Messaging/README.md) constructs. -- [`RapidField.SolidInstruments.Example.Domain.AccessControl.Service`](/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service) demonstrates an AccessControl domain service utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../src/RapidField.SolidInstruments.Messaging/README.md) constructs. -- [`RapidField.SolidInstruments.Example.Domain.Identity`](/example/RapidField.SolidInstruments.Example.Domain.Identity) demonstrates Identity domain logic utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) constructs. -- [`RapidField.SolidInstruments.Example.Domain.Identity.Service`](/example/RapidField.SolidInstruments.Example.Domain.Identity.Service) demonstrates an Identity domain service utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../src/RapidField.SolidInstruments.Messaging/README.md) constructs. +- [`RapidField.SolidInstruments.Example.Domain.AccessControl`](/example/RapidField.SolidInstruments.Example.Domain.AccessControl) demonstrates **AccessControl** domain logic utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) constructs. +- [`RapidField.SolidInstruments.Example.Domain.AccessControl.HttpApi`](/example/RapidField.SolidInstruments.Example.Domain.AccessControl.HttpApi) demonstrates an **AccessControl** domain HTTP API utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../src/RapidField.SolidInstruments.Messaging/README.md) constructs. +- [`RapidField.SolidInstruments.Example.Domain.AccessControl.Service`](/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service) demonstrates an **AccessControl** domain service utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../src/RapidField.SolidInstruments.Messaging/README.md) constructs. +- [`RapidField.SolidInstruments.Example.Domain.Identity`](/example/RapidField.SolidInstruments.Example.Domain.Identity) demonstrates **Identity** domain logic utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) constructs. +- [`RapidField.SolidInstruments.Example.Domain.Identity.Service`](/example/RapidField.SolidInstruments.Example.Domain.Identity.Service) demonstrates an **Identity** domain service utilizing the **Solid Instruments** [data access](../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../src/RapidField.SolidInstruments.Messaging/README.md) constructs. ## License diff --git a/example/RapidField.SolidInstruments.Example.Domain.AccessControl.HttpApi/README.md b/example/RapidField.SolidInstruments.Example.Domain.AccessControl.HttpApi/README.md index 72ef86e3..f1dc9edf 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.AccessControl.HttpApi/README.md +++ b/example/RapidField.SolidInstruments.Example.Domain.AccessControl.HttpApi/README.md @@ -11,7 +11,7 @@ This document describes the purpose of the [`RapidField.SolidInstruments.Example ## Purpose -This project demonstrates an AccessControl domain HTTP API utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../../src/RapidField.SolidInstruments.Messaging/README.md) constructs. +This project demonstrates an **AccessControl** domain HTTP API utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../../src/RapidField.SolidInstruments.Messaging/README.md) constructs. ## License diff --git a/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service/ApplicationServiceExecutor.cs b/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service/ApplicationServiceExecutor.cs index 4e4fd0e9..772b293b 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service/ApplicationServiceExecutor.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service/ApplicationServiceExecutor.cs @@ -17,7 +17,7 @@ namespace RapidField.SolidInstruments.Example.Domain.AccessControl.Service { /// - /// Prepares for and performs execution of the AccessControl domain service. + /// Prepares for and performs execution of the domain service. /// public sealed class ApplicationServiceExecutor : DotNetNativeMessagingServiceExecutor { diff --git a/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service/README.md b/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service/README.md index a16216b9..3b473134 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service/README.md +++ b/example/RapidField.SolidInstruments.Example.Domain.AccessControl.Service/README.md @@ -11,7 +11,7 @@ This document describes the purpose of the [`RapidField.SolidInstruments.Example ## Purpose -This project demonstrates an AccessControl domain service utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../../src/RapidField.SolidInstruments.Messaging/README.md) constructs. +This project demonstrates an **AccessControl** domain service utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../../src/RapidField.SolidInstruments.Messaging/README.md) constructs. ## License diff --git a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/CommandHandlerModule.cs b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/CommandHandlerModule.cs index 66033f63..de159915 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/CommandHandlerModule.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/CommandHandlerModule.cs @@ -9,7 +9,7 @@ namespace RapidField.SolidInstruments.Example.Domain.AccessControl { /// - /// Encapsulates container configuration for AccessControl domain command handlers. + /// Encapsulates container configuration for domain command handlers. /// public sealed class CommandHandlerModule : DotNetNativeCommandHandlerModule { diff --git a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContext.cs b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContext.cs index 4268272a..f4dabd84 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContext.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContext.cs @@ -19,7 +19,7 @@ namespace RapidField.SolidInstruments.Example.Domain.AccessControl using UserRoleModelConfiguration = Models.UserRole.AggregateDataAccessModelConfiguration; /// - /// Represents a connection to the AccessControl database. + /// Represents a connection to the database. /// public sealed class DatabaseContext : ConfiguredContext { @@ -97,6 +97,6 @@ public DbSet Users /// Represents the database name that is used when creating and connecting to the data source. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] - internal const String DatabaseName = "AccessControl"; + internal const String DatabaseName = nameof(AccessControl); } } \ No newline at end of file diff --git a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContextDependencyModule.cs b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContextDependencyModule.cs index dbe3407f..b5f08e48 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContextDependencyModule.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContextDependencyModule.cs @@ -15,7 +15,8 @@ namespace RapidField.SolidInstruments.Example.Domain.AccessControl { /// - /// Encapsulates container configuration for the AccessControl database connection and related data access dependencies. + /// Encapsulates container configuration for the database connection and related data access + /// dependencies. /// public sealed class DatabaseContextDependencyModule : DotNetNativeEntityFrameworkDataStoreDependencyModule { diff --git a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContextRepositoryFactory.cs b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContextRepositoryFactory.cs index 6b9e0174..503eb39f 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContextRepositoryFactory.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/DatabaseContextRepositoryFactory.cs @@ -12,7 +12,8 @@ namespace RapidField.SolidInstruments.Example.Domain.AccessControl { /// - /// Encapsulates creation of new instances that map to AccessControl database entities. + /// Encapsulates creation of new instances that map to + /// database entities. /// public sealed class DatabaseContextRepositoryFactory : EntityFrameworkRepositoryFactory { diff --git a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/EventHandlerModule.cs b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/EventHandlerModule.cs index 8d04bbed..831907bd 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/EventHandlerModule.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/EventHandlerModule.cs @@ -9,7 +9,7 @@ namespace RapidField.SolidInstruments.Example.Domain.AccessControl { /// - /// Encapsulates container configuration for AccessControl domain event handlers. + /// Encapsulates container configuration for domain event handlers. /// public sealed class EventHandlerModule : DotNetNativeEventHandlerModule { diff --git a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/README.md b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/README.md index b2e90acb..94c9d29a 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.AccessControl/README.md +++ b/example/RapidField.SolidInstruments.Example.Domain.AccessControl/README.md @@ -11,7 +11,7 @@ This document describes the purpose of the [`RapidField.SolidInstruments.Example ## Purpose -This project demonstrates AccessControl domain logic utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) constructs. +This project demonstrates **AccessControl** domain logic utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) constructs. ## License diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity.Service/ApplicationServiceExecutor.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity.Service/ApplicationServiceExecutor.cs index 9b1e152f..c5d1f9e3 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity.Service/ApplicationServiceExecutor.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity.Service/ApplicationServiceExecutor.cs @@ -17,7 +17,7 @@ namespace RapidField.SolidInstruments.Example.Domain.Identity.Service { /// - /// Prepares for and performs execution of the Identity domain service. + /// Prepares for and performs execution of the domain service. /// public sealed class ApplicationServiceExecutor : DotNetNativeMessagingServiceExecutor { diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity.Service/README.md b/example/RapidField.SolidInstruments.Example.Domain.Identity.Service/README.md index ab99d755..43d792ed 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity.Service/README.md +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity.Service/README.md @@ -11,7 +11,7 @@ This document describes the purpose of the [`RapidField.SolidInstruments.Example ## Purpose -This project demonstrates an Identity domain service utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../../src/RapidField.SolidInstruments.Messaging/README.md) constructs. +This project demonstrates an **Identity** domain service utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) and [messaging](../../src/RapidField.SolidInstruments.Messaging/README.md) constructs. ## License diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/DatabaseContext.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/DatabaseContext.cs index da6ccc9a..a456e1c1 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/DatabaseContext.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/DatabaseContext.cs @@ -20,7 +20,7 @@ namespace RapidField.SolidInstruments.Example.Domain.Identity { /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// public sealed class DatabaseContext : IdentityDbContext { @@ -441,7 +441,7 @@ private String DatabaseName /// Represents the database name that is used when creating and connecting to the data source. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] - private const String DefaultDatabaseName = "Identity"; + private const String DefaultDatabaseName = nameof(Identity); /// /// Represents the default database type for backing databases. diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/DatabaseContextDependencyModule.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/DatabaseContextDependencyModule.cs index 0a2bfdda..287a1abd 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/DatabaseContextDependencyModule.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/DatabaseContextDependencyModule.cs @@ -11,7 +11,8 @@ namespace RapidField.SolidInstruments.Example.Domain.Identity { /// - /// Encapsulates container configuration for the Identity database connection and related data access dependencies. + /// Encapsulates container configuration for the database connection and related data access + /// dependencies. /// public sealed class DatabaseContextDependencyModule : DotNetNativeDependencyModule { diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlerModule.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlerModule.cs index 11953b2b..b4784b23 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlerModule.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlerModule.cs @@ -9,7 +9,7 @@ namespace RapidField.SolidInstruments.Example.Domain.Identity { /// - /// Encapsulates container configuration for Identity domain event handlers. + /// Encapsulates container configuration for domain event handlers. /// public sealed class EventHandlerModule : DotNetNativeEventHandlerModule { diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelCreatedEventHandler.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelCreatedEventHandler.cs index 8bb86583..e2e2f209 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelCreatedEventHandler.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelCreatedEventHandler.cs @@ -27,7 +27,7 @@ public sealed class DomainModelCreatedEventHandler : DomainModelCreatedEventHand /// A processing intermediary that is used to process sub-commands. /// /// - /// A connection to the Identity database. + /// A connection to the database. /// /// /// is -or- is @@ -87,7 +87,7 @@ protected override void Process(DomainModel model, IEnumerable labels, G } /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DatabaseContext DatabaseContext; diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelDeletedEventHandler.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelDeletedEventHandler.cs index 57137c10..0645bb0b 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelDeletedEventHandler.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelDeletedEventHandler.cs @@ -26,7 +26,7 @@ public sealed class DomainModelDeletedEventHandler : DomainModelDeletedEventHand /// A processing intermediary that is used to process sub-commands. /// /// - /// A connection to the Identity database. + /// A connection to the database. /// /// /// is -or- is @@ -79,7 +79,7 @@ protected override void Process(DomainModel model, IEnumerable labels, G } /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DatabaseContext DatabaseContext; diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelUpdatedEventHandler.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelUpdatedEventHandler.cs index e3abaf50..c5c37f5a 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelUpdatedEventHandler.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/User/DomainModelUpdatedEventHandler.cs @@ -27,7 +27,7 @@ public sealed class DomainModelUpdatedEventHandler : DomainModelUpdatedEventHand /// A processing intermediary that is used to process sub-commands. /// /// - /// A connection to the Identity database. + /// A connection to the database. /// /// /// is -or- is @@ -96,7 +96,7 @@ protected override void Process(DomainModel model, IEnumerable labels, G } /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DatabaseContext DatabaseContext; diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelCreatedEventHandler.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelCreatedEventHandler.cs index 957303c2..964f533f 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelCreatedEventHandler.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelCreatedEventHandler.cs @@ -27,7 +27,7 @@ public sealed class DomainModelCreatedEventHandler : DomainModelCreatedEventHand /// A processing intermediary that is used to process sub-commands. /// /// - /// A connection to the Identity database. + /// A connection to the database. /// /// /// is -or- is @@ -82,7 +82,7 @@ protected override void Process(DomainModel model, IEnumerable labels, G } /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DatabaseContext DatabaseContext; diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelDeletedEventHandler.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelDeletedEventHandler.cs index e3d73597..ca5f6fb7 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelDeletedEventHandler.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelDeletedEventHandler.cs @@ -26,7 +26,7 @@ public sealed class DomainModelDeletedEventHandler : DomainModelDeletedEventHand /// A processing intermediary that is used to process sub-commands. /// /// - /// A connection to the Identity database. + /// A connection to the database. /// /// /// is -or- is @@ -79,7 +79,7 @@ protected override void Process(DomainModel model, IEnumerable labels, G } /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DatabaseContext DatabaseContext; diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelUpdatedEventHandler.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelUpdatedEventHandler.cs index a0c94ba7..e060b453 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelUpdatedEventHandler.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRole/DomainModelUpdatedEventHandler.cs @@ -27,7 +27,7 @@ public sealed class DomainModelUpdatedEventHandler : DomainModelUpdatedEventHand /// A processing intermediary that is used to process sub-commands. /// /// - /// A connection to the Identity database. + /// A connection to the database. /// /// /// is -or- is @@ -89,7 +89,7 @@ protected override void Process(DomainModel model, IEnumerable labels, G } /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DatabaseContext DatabaseContext; diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelCreatedEventHandler.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelCreatedEventHandler.cs index 5df69aac..a41ac3fe 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelCreatedEventHandler.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelCreatedEventHandler.cs @@ -27,7 +27,7 @@ public sealed class DomainModelCreatedEventHandler : DomainModelCreatedEventHand /// A processing intermediary that is used to process sub-commands. /// /// - /// A connection to the Identity database. + /// A connection to the database. /// /// /// is -or- is @@ -82,7 +82,7 @@ protected override void Process(DomainModel model, IEnumerable labels, G } /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DatabaseContext DatabaseContext; diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelDeletedEventHandler.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelDeletedEventHandler.cs index 5fc0458e..ff8268d9 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelDeletedEventHandler.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelDeletedEventHandler.cs @@ -26,7 +26,7 @@ public sealed class DomainModelDeletedEventHandler : DomainModelDeletedEventHand /// A processing intermediary that is used to process sub-commands. /// /// - /// A connection to the Identity database. + /// A connection to the database. /// /// /// is -or- is @@ -79,7 +79,7 @@ protected override void Process(DomainModel model, IEnumerable labels, G } /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DatabaseContext DatabaseContext; diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelUpdatedEventHandler.cs b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelUpdatedEventHandler.cs index 1e513fa8..6d20f6c4 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelUpdatedEventHandler.cs +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/EventHandlers/ModelState/UserRoleAssignment/DomainModelUpdatedEventHandler.cs @@ -27,7 +27,7 @@ public sealed class DomainModelUpdatedEventHandler : DomainModelUpdatedEventHand /// A processing intermediary that is used to process sub-commands. /// /// - /// A connection to the Identity database. + /// A connection to the database. /// /// /// is -or- is @@ -83,7 +83,7 @@ protected override void Process(DomainModel model, IEnumerable labels, G } /// - /// Represents a connection to the Identity database. + /// Represents a connection to the database. /// [DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DatabaseContext DatabaseContext; diff --git a/example/RapidField.SolidInstruments.Example.Domain.Identity/README.md b/example/RapidField.SolidInstruments.Example.Domain.Identity/README.md index f9a6099d..26d10418 100644 --- a/example/RapidField.SolidInstruments.Example.Domain.Identity/README.md +++ b/example/RapidField.SolidInstruments.Example.Domain.Identity/README.md @@ -11,7 +11,7 @@ This document describes the purpose of the [`RapidField.SolidInstruments.Example ## Purpose -This project demonstrates Identity domain logic utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) constructs. +This project demonstrates **Identity** domain logic utilizing the **Solid Instruments** [data access](../../src/RapidField.SolidInstruments.DataAccess/README.md) constructs. ## License