예제 #1
0
 public function buscarCieListado($nombreCie)
 {
     $o_DMantenimientoGeneral = new DMantenimientoGeneral();
     $resultado = $o_DMantenimientoGeneral->buscarCieListado($nombreCie);
     foreach ($resultado as $key => $value) {
         array_push($resultado[$key], "");
     }
     return $resultado;
 }
예제 #2
0
파일: LRrhh.php 프로젝트: gianpascal/yachay
 public function listaSucursal($idEmpresa, $nomSede)
 {
     $o_DMantGeneral = new DMantenimientoGeneral();
     $resultado = $o_DMantGeneral->spListaSedes($idEmpresa, $nomSede);
     return $resultado;
 }