// src/Webshop.Application/Services/Admin/IAdminShippingMethodService.cs using System; using System.Collections.Generic; using System.Threading.Tasks; using Webshop.Application; using Webshop.Application.DTOs.Shipping; namespace Webshop.Application.Services.Admin { public interface IAdminShippingMethodService { Task>> GetAllAsync(); Task> GetByIdAsync(Guid id); Task> CreateAsync(ShippingMethodDto shippingMethodDto); Task UpdateAsync(ShippingMethodDto shippingMethodDto); Task DeleteAsync(Guid id); } }