namespace TaxBaik.Domain.Interfaces; using TaxBaik.Domain.Entities; public interface IInquiryRepository { Task CreateAsync(Inquiry inquiry, CancellationToken cancellationToken = default); Task GetByIdAsync(int id, CancellationToken cancellationToken = default); Task<(IEnumerable Items, int Total)> GetPagedAsync( int page, int pageSize, string? status = null, CancellationToken cancellationToken = default); Task UpdateStatusAsync(int id, string status, CancellationToken cancellationToken = default); }