naming
This commit is contained in:
@@ -8,9 +8,9 @@ namespace Webshop.Application.Services.Admin
|
||||
{
|
||||
public interface IAdminCategorieService
|
||||
{
|
||||
Task<IEnumerable<categorieDto>> GetAllAsync();
|
||||
Task<categorieDto?> GetByIdAsync(Guid id);
|
||||
Task<(categorieDto? Createdcategorie, string? ErrorMessage)> CreateAsync(CreatecategorieDto categorieDto);
|
||||
Task<IEnumerable<CategorieDto>> GetAllAsync();
|
||||
Task<CategorieDto?> GetByIdAsync(Guid id);
|
||||
Task<(CategorieDto? Createdcategorie, string? ErrorMessage)> CreateAsync(CreatecategorieDto categorieDto);
|
||||
Task<(bool Success, string? ErrorMessage)> UpdateAsync(Guid id, CreatecategorieDto categorieDto);
|
||||
Task<bool> DeleteAsync(Guid id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user