29 lines
611 B
Java
29 lines
611 B
Java
package modelo;
|
|
|
|
import java.sql.Timestamp;
|
|
|
|
public class Venta {
|
|
private int id;
|
|
private Timestamp fechaVenta;
|
|
private int numeroAsiento;
|
|
private double precio;
|
|
|
|
public Venta(int id, Timestamp fechaVenta, int numeroAsiento, double precio) {
|
|
this.id = id;
|
|
this.fechaVenta = fechaVenta;
|
|
this.numeroAsiento = numeroAsiento;
|
|
this.precio = precio;
|
|
}
|
|
|
|
public Timestamp getFechaVenta() {
|
|
return fechaVenta;
|
|
}
|
|
|
|
public int getNumeroAsiento() {
|
|
return numeroAsiento;
|
|
}
|
|
|
|
public double getPrecio() {
|
|
return precio;
|
|
}
|
|
} |