11 lines
369 B
C#
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);
|
|
}
|
|
} |