11 lines
203 B
C#
11 lines
203 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BD_empresa.Data
|
|
{
|
|
public interface IClienteRepository
|
|
{
|
|
Task<List<UnidadeSmart>> GetAllClientesAsync();
|
|
}
|
|
}
|