Files
workshop8/Data/IClientRepository.cs

15 lines
349 B
C#
Raw Normal View History

2025-07-29 22:22:38 -03:00
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);
}
}