using public_valetax.Models; using public_valetax.DTOs; namespace public_valetax.Repositories { public interface IJournalRepository { Task CreateJournalEntryAsync( long eventId, string exceptionType, string message, string? queryParameters = null, string? bodyParameters = null, string? stackTrace = null); Task GetJournalEntryAsync(long id); Task GetJournalEntriesRangeAsync(int skip, int take, VJournalFilter filter); } }