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