9 lines
209 B
C#
9 lines
209 B
C#
using SPMS.Domain.Entities;
|
|
|
|
namespace SPMS.Domain.Interfaces;
|
|
|
|
public interface IFaqRepository : IRepository<Faq>
|
|
{
|
|
Task<IReadOnlyList<Faq>> GetActiveListAsync(long serviceId, string? category = null);
|
|
}
|