/*
* 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.
*/
package backingBean;
import controller.ControllerVisita;
import java.util.Date;
import java.util.List;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ApplicationScoped;
import model.Visita;
/**
*
* @author GuillermoLuis
*/
@ManagedBean
@ApplicationScoped
public class BeanVisitas {
private String Nombre;
private Date fecha;
private String motivo;
private String estado;
private String numero;
public String getNombre() {
return Nombre;
}
public void setNombre(String Nombre) {
this.Nombre = Nombre;
}
public Date getFecha() {
return fecha;
}
public void setFecha(Date fecha) {
this.fecha = fecha;
}
public String getMotivo() {
return motivo;
}
public void setMotivo(String motivo) {
this.motivo = motivo;
}
public String getEstado() {
return estado;
}
public void setEstado(String estado) {
this.estado = estado;
}
public String getNumero() {
return numero;
}
public void setNumero(String numero) {
this.numero = numero;
}
public BeanVisitas() {
}
public void AgregarVisita() {
ControllerVisita cont = new ControllerVisita();
cont.agregarVisita(Nombre, fecha, motivo, estado, numero);
}
public List<Visita> listaVisitas() {
ControllerVisita cont = new ControllerVisita();
return cont.ListaVisitas();
}
}