<?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 TiposCargosControlador extends Controladores {
/**
* Permite mostrar select de las TiposColaborador.
* @return HTML Formulario solo con datos inciales o necesarios.
*/
function mostrarSelect(){
$tiposCargos = TiposCargos::todos();
Vistas::mostrar("talento-humano", "tiposcargos/select-tipos-cargos", array('tiposCargos'=>$tiposCargos));
}
}