diff --git a/Mango.Nop.Core/NopDependencies/BaseEntity.cs b/Mango.Nop.Core/NopDependencies/BaseEntity.cs index 3633650..643d8d9 100644 --- a/Mango.Nop.Core/NopDependencies/BaseEntity.cs +++ b/Mango.Nop.Core/NopDependencies/BaseEntity.cs @@ -13,6 +13,11 @@ public abstract partial class BaseEntity : IBaseEntity /// Gets or sets the entity identifier /// public int Id { get; set; } + + public override string ToString() + { + return $"{GetType().Name} [Id: {Id}]"; + } } public interface IBaseEntity //: IEntityInt