Files
ShopSolution-backend/Webshop.Application/Services/Customers/Interfaces/ICustomerService.cs
Tizian.Breuch 9e298a0458 aufrüumen
2025-07-25 15:46:31 +02:00

11 lines
369 B
C#

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