using Customers.Api.Domain; namespace Customers.Api.Services; public interface ICustomerService { Task CreateAsync(Customer customer); Task GetAsync(Guid id); Task> GetAllAsync(); Task UpdateAsync(Customer customer); Task DeleteAsync(Guid id); }