9 lines
202 B
C#
9 lines
202 B
C#
using SPMS.Domain.Entities;
|
|
|
|
namespace SPMS.Domain.Interfaces;
|
|
|
|
public interface IBannerRepository : IRepository<Banner>
|
|
{
|
|
Task<IReadOnlyList<Banner>> GetActiveListAsync(string? position = null);
|
|
}
|