2025-04-02 22:08:17 +01:00

11 lines
336 B
C#

namespace EnotaryoPH.Web.Common.Services
{
public interface IEventService
{
Task LogAsync(NotaryoEvent notaryoEvent, List<object> entityIds, object payLoad);
Task LogAsync(NotaryoEvent notaryoEvent, object entityId);
Task LogAsync(NotaryoEvent notaryoEvent, object entityId, object payLoad);
}
}