<th>Telefono</th>
																			<th>Correo</th>
																			<th>Contrato</th>
																			<th>Fecha de Contrato</th>
																			<th>Monto de Cr&eacute;dito</th>
																			<th>Acciones</th>
																		</tr>
																	</thead>
																	<!--cuerpo de la tabla empleados-->
																	<tbody style="text-transform: uppercase;">
																		<?php 
include '../controller/cExpediente.php';
include '../controller/cUtilerias.php';
$exped = new cExpediente();
$util = new cUtilerias();
$lexpes = $exped->listarExpedientesTodos();
while ($ex = $lexpes->NextRow()) {
    ?>
																		<tr>
																			<td><?php 
    echo $ex['razon'] . " " . $ex['nombre'] . " " . $ex['a_pat'] . " " . $ex['a_mat'];
    ?>
</td>
																			<td><?php 
    echo $ex['telefono_p'];
    ?>
</td>
																			<td><?php 
    echo $ex['email'];
    ?>
</td>