<?php
class OperacionesSistemaControlador extends Controladores {
function datosParaTab(){
$Operacion = Operaciones::datosPorCombinacion(
$this->operacionComponente, $this->operacionControlador, $this->operacionOperacion
);
if(!is_null($Operacion)){
echo RespuestasSistema::exito(array("Operacion" => $Operacion));
}else{
echo RespuestasSistema::fallo("No existe una operación registrada para [$this->operacionComponente; $this->operacionControlador; $this->operacionOperacion ].");
}
}
}