Files
rm-ventas/backend/src/Ventas.Core/Entities/Horario.cs
T
Nurfog 3d5419403d feat: core entities, infrastructure, and lead repositories
- 25 domain entities mapped from original Datos/ classes
- 4 enums (EstadoLead, TipoPago, TipoDocumento, TipoDescuento)
- DTOs for Lead, Auth flows
- 6 repository interfaces
- VentasDbContext with EF Core + Npgsql
- LeadRepository (command SPs) and LeadQueryRepository (query SPs) with Dapper
- Program.cs with JWT auth, CORS, DI setup
- appsettings.json with connection string
- .gitignore for bin/obj/node_modules
- ROADMAP.md for daily progress tracking
2026-07-07 17:45:49 -04:00

12 lines
295 B
C#

namespace Ventas.Core.Entities;
public class Horario
{
public int Id { get; set; }
public int? BloqueId { get; set; }
public string? HoraInicio { get; set; }
public string? HoraTermino { get; set; }
public int? SedeId { get; set; }
public int? JornadaId { get; set; }
}