using System.Threading.Tasks; using Webshop.Application.DTOs.Customers; // Korrektes Using für DTOs namespace Webshop.Application.Services.Customers.Interfaces { public interface ICustomerService { Task GetMyProfileAsync(string userId); Task UpdateMyProfileAsync(string userId, UpdateCustomerProfileDto profileDto); } }