This commit is contained in:
Tizian.Breuch
2025-07-23 21:08:30 +02:00
parent d20a6d6ae6
commit ce69373adb
85 changed files with 2311 additions and 332 deletions

View File

@@ -0,0 +1,16 @@
// src/Webshop.Application/Services/Admin/IAdminSupplierService.cs
using System.Collections.Generic;
using System.Threading.Tasks;
using Webshop.Application.DTOs; // SupplierDto
namespace Webshop.Application.Services.Admin
{
public interface IAdminSupplierService
{
Task<IEnumerable<SupplierDto>> GetAllSuppliersAsync();
Task<SupplierDto?> GetSupplierByIdAsync(Guid id);
Task<SupplierDto> CreateSupplierAsync(SupplierDto supplierDto);
// Task<bool> UpdateSupplierAsync(SupplierDto supplierDto); // Beispiel für zukünftige Methode
// Task<bool> DeleteSupplierAsync(Guid id); // Beispiel für zukünftige Methode
}
}