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

12 lines
270 B
C#

using System;
using System.Threading.Tasks;
using Webshop.Domain.Entities;
namespace Webshop.Domain.Interfaces
{
public interface ICustomerRepository
{
Task<Customer?> GetByUserIdAsync(string userId);
Task UpdateAsync(Customer customer);
}
}