naming
This commit is contained in:
@@ -6,13 +6,13 @@ using Webshop.Domain.Entities;
|
||||
|
||||
namespace Webshop.Domain.Interfaces
|
||||
{
|
||||
public interface IcategorieRepository
|
||||
public interface ICategorieRepository
|
||||
{
|
||||
Task<IEnumerable<categorie>> GetAllAsync();
|
||||
Task<categorie?> GetByIdAsync(Guid id);
|
||||
Task<categorie?> GetBySlugAsync(string slug);
|
||||
Task AddAsync(categorie categorie);
|
||||
Task UpdateAsync(categorie categorie);
|
||||
Task<IEnumerable<Categorie>> GetAllAsync();
|
||||
Task<Categorie?> GetByIdAsync(Guid id);
|
||||
Task<Categorie?> GetBySlugAsync(string slug);
|
||||
Task AddAsync(Categorie categorie);
|
||||
Task UpdateAsync(Categorie categorie);
|
||||
Task DeleteAsync(Guid id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user