aufrüumen
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user