Check out our availability and book the date and time that works for you
bottom of page
public class ServicioReservas
{
// Procesa la reserva de forma automática
public bool ProcesarReserva(int idPaquete, int idCliente)
{
// Valida disponibilidad
// Guarda la reserva
// Notifica al cliente
return true/false;
}
}
-- Valida si hay cupos disponibles
CREATE PROCEDURE sp_validarDisponibilidad
@idPaquete INT