Adress und shipping
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// src/Webshop.Application/Services/Admin/IAdminShippingMethodService.cs
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Webshop.Application.DTOs.Shipping; // Für ShippingMethodDto
|
||||
|
||||
namespace Webshop.Application.Services.Admin
|
||||
{
|
||||
public interface IAdminShippingMethodService
|
||||
{
|
||||
Task<IEnumerable<ShippingMethodDto>> GetAllAsync();
|
||||
Task<ShippingMethodDto?> GetByIdAsync(Guid id);
|
||||
Task<ShippingMethodDto> CreateAsync(ShippingMethodDto shippingMethodDto);
|
||||
Task<bool> UpdateAsync(ShippingMethodDto shippingMethodDto);
|
||||
Task<bool> DeleteAsync(Guid id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user