using Domain.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Core.Interfaces { public interface ICustomerDom { Task AddAsync(ECustomer entity); Task DeleteAsync(int id); Task> GetAllAsync(); Task GetByIdAsync(int id); Task> SearchAsync(string? name, string? email, string? document); Task UpdateAsync(ECustomer entity); } }