Package com.mycompany.model

Examples of com.mycompany.model.Persona


   
    Calendar fechaVencimiento1 = Calendar.getInstance();
    fechaVencimiento1.set(2014,10,1,0,0,0);
    Calendar fechaVencimiento2 = Calendar.getInstance();
    fechaVencimiento2.set(2014,12,10,0,0,0);
    Persona cliente = new Persona();
    cliente.setNombre("Inversiones Ochoa");
    Persona proveedor = new Persona();
    proveedor.setNombre("Frenosa");
    Movimiento movimiento1 = new Movimiento();
    movimiento1.setDescripcion("Venta de acero 3 pulg.");
    movimiento1.setPersona(cliente);
    movimiento1.setFechaVencimiento(fechaVencimiento1.getTime());
    movimiento1.setFechaPago(fechaVencimiento1.getTime());
View Full Code Here


  }

  @Override
  public Object getAsObject(FacesContext context, UIComponent component,
      String value) {
    Persona retorno = null;

    if (value != null) {
      retorno = personaRepository.porId(new Long(value));
    }
    return retorno;
View Full Code Here

TOP

Related Classes of com.mycompany.model.Persona

Copyright © 2018 www.massapicom. 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.