2 Commits

Author SHA1 Message Date
eb6f560213 add: Listagem de clientes 2025-07-30 18:02:15 +00:00
ca6b7d311c fix: ajuste de header de página 2025-07-30 17:39:28 +00:00
2 changed files with 28 additions and 3 deletions

View File

@@ -20,8 +20,32 @@ namespace Workshop8.Data
public async Task<IEnumerable<Cliente>> GetAllClientsAsync()
{
// TODO: implementar SELECT
return new List<Cliente>();
var clientes = new List<Cliente>();
await using (var connection = new SqliteConnection(_connectionString))
{
await connection.OpenAsync();
await using (var cmd = connection.CreateCommand())
{
cmd.CommandText = @"SELECT Id, Nome, Email, CriadoEm
FROM Clientes
ORDER BY Id;";
await using (var reader = await cmd.ExecuteReaderAsync())
{
while (await reader.ReadAsync())
{
clientes.Add(new Cliente
{
Id = reader.GetInt32(0),
Nome = reader.GetString(1),
Email = reader.GetString(2),
CriadoEm = reader.GetDateTime(3)
});
}
}
}
}
return clientes;
}
public async Task AddClientAsync(Cliente c)

View File

@@ -3,8 +3,9 @@
@{
ViewData["Title"] = "Clientes";
}
<div class="d-flex justify-content-between align-items-center my-3">
<h2>Clientes</h2>
<h3>Clientes</h3>
<button class="btn btn-primary" type="button" id="createClientBtn">Adicionar Cliente</button>
</div>
<table class="table table-striped">