Skip to main content

Overview

The CE_Clientes entity represents a client in the sports court reservation system. It stores customer contact information and status.

Properties

Entity Definition

public class CE_Clientes
{
    public int IdCliente { get; set; }
    public string? Nombre { get; set; }
    public string? Telefono { get; set; }
    public string? Correo { get; set; }
    public bool Estado { get; set; }
}

Usage Example

// Creating a new client
var cliente = new CE_Clientes
{
    IdCliente = 1,
    Nombre = "Juan Pérez",
    Telefono = "+52 123 456 7890",
    Correo = "[email protected]",
    Estado = true
};

Build docs developers (and LLMs) love