You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1019 B
31 lines
1019 B
using AutoMapper; |
|
using Sanhe.Abp.Auditing.AuditLogs; |
|
using Sanhe.Abp.Auditing.Logging.Dto; |
|
using Sanhe.Abp.Auditing.SecurityLogs; |
|
using Sanhe.Abp.AuditLogging; |
|
using Sanhe.Abp.Logging; |
|
|
|
namespace Sanhe.Abp.Auditing |
|
{ |
|
public class AbpAuditingMapperProfile : Profile |
|
{ |
|
public AbpAuditingMapperProfile() |
|
{ |
|
CreateMap<AuditLogAction, AuditLogActionDto>() |
|
.MapExtraProperties(); |
|
CreateMap<EntityPropertyChange, EntityPropertyChangeDto>(); |
|
CreateMap<EntityChangeWithUsername, EntityChangeWithUsernameDto>(); |
|
CreateMap<EntityChange, EntityChangeDto>() |
|
.MapExtraProperties(); |
|
CreateMap<AuditLog, AuditLogDto>() |
|
.MapExtraProperties(); |
|
|
|
CreateMap<SecurityLog, SecurityLogDto>() |
|
.MapExtraProperties(); |
|
|
|
CreateMap<LogField, LogFieldDto>(); |
|
CreateMap<LogException, LogExceptionDto>(); |
|
CreateMap<LogInfo, LogDto>(); |
|
} |
|
} |
|
}
|
|
|