<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
//include 'mvc/controladores/usuario/RegistroPersona.php';
//include 'mvc/controladores/otros/PrestacionesSociales.php';
/**
* Description of Usuarios
*
* @author Desarrollo
*/
class PuestosTrabajosControlador extends Controladores {
/**
* Permite mostrar select de las PuestosTrabajo.
* @return HTML Formulario solo con datos inciales o necesarios.
*/
function mostrarSelectPorSede(){
$puestosTrabajos = Sedes::puestosTrabajos($this->sedeID);
Vistas::mostrar("camara", "puestostrabajo/select-puestos-trabajo", array('puestosTrabajos'=>$puestosTrabajos));
}
}