This commit is contained in:
Tizian.Breuch
2025-08-01 15:17:14 +02:00
parent 90171fffa2
commit 4dfc50d572
9 changed files with 24 additions and 24 deletions

View File

@@ -7,7 +7,7 @@ namespace Webshop.Application.Services.Public
{
public interface ICategorieService
{
Task<IEnumerable<categorieDto>> GetAllActiveAsync();
Task<categorieDto?> GetBySlugAsync(string slug);
Task<IEnumerable<CategorieDto>> GetAllActiveAsync();
Task<CategorieDto?> GetBySlugAsync(string slug);
}
}