using SPMS.Domain.Entities; namespace SPMS.Domain.Interfaces; public interface INoticeRepository : IRepository { Task<(IReadOnlyList Items, int TotalCount)> GetActivePagedAsync(long serviceId, int page, int size); Task GetActiveByIdAsync(long id, long serviceId); }