diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedAggregateRoot.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedAggregateRoot.cs
index c0988b98a9..69965f5a14 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedAggregateRoot.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedAggregateRoot.cs
@@ -19,9 +19,9 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// This class can be used to simplify implementing for aggregate roots.
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
[Serializable]
- public abstract class AuditedAggregateRoot : CreationAuditedAggregateRoot, IAudited
+ public abstract class AuditedAggregateRoot : CreationAuditedAggregateRoot, IAudited
{
///
public virtual DateTime? LastModificationTime { get; set; }
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedAggregateRootWithUser.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedAggregateRootWithUser.cs
index 46f74a37cf..2378e49e4d 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedAggregateRootWithUser.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedAggregateRootWithUser.cs
@@ -21,10 +21,10 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// This class can be used to simplify implementing for aggregate roots.
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
/// Type of the user
[Serializable]
- public abstract class AuditedAggregateRootWithUser : AuditedAggregateRoot, IAudited
+ public abstract class AuditedAggregateRootWithUser : AuditedAggregateRoot, IAudited
where TUser : IEntity
{
///
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedEntity.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedEntity.cs
index 9fc060a418..62fdd93dcd 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedEntity.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedEntity.cs
@@ -19,9 +19,9 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// This class can be used to simplify implementing .
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
[Serializable]
- public abstract class AuditedEntity : CreationAuditedEntity, IAudited
+ public abstract class AuditedEntity : CreationAuditedEntity, IAudited
{
///
public virtual DateTime? LastModificationTime { get; set; }
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedEntityWithUser.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedEntityWithUser.cs
index 5df2331bed..b45fd8916e 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedEntityWithUser.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/AuditedEntityWithUser.cs
@@ -21,10 +21,10 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// This class can be used to simplify implementing .
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
/// Type of the user
[Serializable]
- public abstract class AuditedEntityWithUser : AuditedEntity, IAudited
+ public abstract class AuditedEntityWithUser : AuditedEntity, IAudited
where TUser : IEntity
{
///
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedAggregateRoot.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedAggregateRoot.cs
index 8522472047..f233bbadb5 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedAggregateRoot.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedAggregateRoot.cs
@@ -19,9 +19,9 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// This class can be used to simplify implementing for aggregate roots.
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
[Serializable]
- public abstract class CreationAuditedAggregateRoot : AggregateRoot, ICreationAudited
+ public abstract class CreationAuditedAggregateRoot : AggregateRoot, ICreationAudited
{
///
public virtual DateTime CreationTime { get; set; }
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedAggregateRootWithUser.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedAggregateRootWithUser.cs
index 3a8266c02a..e10bc58b34 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedAggregateRootWithUser.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedAggregateRootWithUser.cs
@@ -17,10 +17,10 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// This class can be used to simplify implementing for aggregate roots.
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
/// Type of the user
[Serializable]
- public abstract class CreationAuditedAggregateRootWithUser : CreationAuditedAggregateRoot, ICreationAudited
+ public abstract class CreationAuditedAggregateRootWithUser : CreationAuditedAggregateRoot, ICreationAudited
{
///
public virtual TUser Creator { get; set; }
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedEntity.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedEntity.cs
index 7f490ba570..8a0781a5df 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedEntity.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedEntity.cs
@@ -19,9 +19,9 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// This class can be used to simplify implementing for an entity.
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
[Serializable]
- public abstract class CreationAuditedEntity : Entity, ICreationAudited
+ public abstract class CreationAuditedEntity : Entity, ICreationAudited
{
///
public virtual DateTime CreationTime { get; set; }
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedEntityWithUser.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedEntityWithUser.cs
index 9b14080820..86b4696c05 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedEntityWithUser.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/CreationAuditedEntityWithUser.cs
@@ -17,10 +17,10 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// This class can be used to simplify implementing .
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
/// Type of the user
[Serializable]
- public abstract class CreationAuditedEntityWithUser : CreationAuditedEntity, ICreationAudited
+ public abstract class CreationAuditedEntityWithUser : CreationAuditedEntity, ICreationAudited
{
///
public virtual TUser Creator { get; set; }
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedAggregateRoot.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedAggregateRoot.cs
index 30a7f44975..1dd0c2d8cb 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedAggregateRoot.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedAggregateRoot.cs
@@ -22,9 +22,9 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// Implements to be a base class for full-audited aggregate roots.
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
[Serializable]
- public abstract class FullAuditedAggregateRoot : AuditedAggregateRoot, IFullAudited
+ public abstract class FullAuditedAggregateRoot : AuditedAggregateRoot, IFullAudited
{
///
public virtual bool IsDeleted { get; set; }
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedAggregateRootWithUser.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedAggregateRootWithUser.cs
index 766b6301ba..ce93fa6b8d 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedAggregateRootWithUser.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedAggregateRootWithUser.cs
@@ -24,10 +24,10 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// Implements to be a base class for full-audited aggregate roots.
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
/// Type of the user
[Serializable]
- public abstract class FullAuditedAggregateRootWithUser : FullAuditedAggregateRoot, IFullAudited
+ public abstract class FullAuditedAggregateRootWithUser : FullAuditedAggregateRoot, IFullAudited
where TUser : IEntity
{
///
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedEntity.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedEntity.cs
index 25cacc92c3..b9f6f289cc 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedEntity.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedEntity.cs
@@ -22,9 +22,9 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// Implements to be a base class for full-audited entities.
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
[Serializable]
- public abstract class FullAuditedEntity : AuditedEntity, IFullAudited
+ public abstract class FullAuditedEntity : AuditedEntity, IFullAudited
{
///
public virtual bool IsDeleted { get; set; }
diff --git a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedEntityWithUser.cs b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedEntityWithUser.cs
index a6f241c6ea..12311820d2 100644
--- a/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedEntityWithUser.cs
+++ b/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Auditing/FullAuditedEntityWithUser.cs
@@ -24,10 +24,10 @@ namespace Volo.Abp.Domain.Entities.Auditing
///
/// Implements to be a base class for full-audited entities.
///
- /// Type of the primary key of the entity
+ /// Type of the primary key of the entity
/// Type of the user
[Serializable]
- public abstract class FullAuditedEntityWithUser : FullAuditedEntity, IFullAudited
+ public abstract class FullAuditedEntityWithUser : FullAuditedEntity, IFullAudited
where TUser : IEntity
{
///