Files
workshop8/Data/IClientRepository.cs
arthur faria 189fa1734c Initial commit
2025-07-29 22:22:38 -03:00

15 lines
349 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Workshop8.Models;
namespace Workshop8.Data
{
public interface IClientRepository
{
Task<IEnumerable<Cliente>> GetAllClientsAsync();
Task AddClientAsync(Cliente c);
Task UpdateClientAsync(Cliente c);
Task DeleteClientAsync(int id);
}
}