This commit is contained in:
OlgunR
2026-01-16 14:10:59 +01:00
6 changed files with 12 additions and 0 deletions

View File

@@ -2,6 +2,8 @@ using DbFirst.Domain.Entities;
namespace DbFirst.Domain.Repositories;
// TODO: instead of creating interface per entity, consider using generic repository pattern (eg. IRepository<T>) to reduce code duplication.
//TODO: move to application layer as a part of clean architecture
public interface ICatalogRepository
{
Task<List<VwmyCatalog>> GetAllAsync(CancellationToken cancellationToken = default);