Examples of AlquilerCanchaList


Examples of upc.iluminados.modelo.rest.AlquilerCanchaList

  public @ResponseBody AlquilerCanchaList getConsultaHis(@PathVariable("nombre") String nombre, @PathVariable("fechadesde") String fechadesde,
      @PathVariable("fechahasta") String fechahasta) throws BaseExcepcion{
   
    logger.debug("Provider has received request to get all persons");

    AlquilerCanchaList result=new AlquilerCanchaList();
   
    result.setData(serviciosAlquilerCancha.getAll(nombre, fechadesde, fechahasta));
   
    return result;
  }
View Full Code Here

Examples of upc.iluminados.modelo.rest.AlquilerCanchaList

  @RequestMapping(value="/consultashis2", method=RequestMethod.GET, headers="Accept=application/xml, application/json")
  public @ResponseBody AlquilerCanchaList getConsultaHis() throws BaseExcepcion{
   
    logger.debug("Provider has received request to get all persons");

    AlquilerCanchaList result=new AlquilerCanchaList();
   
    result.setData(serviciosAlquilerCancha.getAll());
   
    return result;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.