using System; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; namespace Sanhe.Abp.Auditing.AuditLogs; public interface IEntityChangesAppService : IApplicationService { Task GetAsync(Guid id); Task GetWithUsernameAsync(Guid id); Task> GetListAsync(EntityChangeGetByPagedDto input); Task> GetWithUsernameAsync(EntityChangeGetWithUsernameDto input); }