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