cambio1modelo
This commit is contained in:
parent
f14f54d1a6
commit
3c4a15c2c9
|
@ -0,0 +1,44 @@
|
||||||
|
/*
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||||
|
*/
|
||||||
|
package Modelo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author citla
|
||||||
|
*/
|
||||||
|
public class Asiento extends Zona{
|
||||||
|
|
||||||
|
String id;
|
||||||
|
boolean estado;
|
||||||
|
|
||||||
|
public Asiento() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getEstado() {
|
||||||
|
return estado;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(String id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEstado(boolean estado) {
|
||||||
|
this.estado = estado;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void comprarAsiento(double dinero){
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Asiento{" + "id=" + id + ", estado=" + estado + '}';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||||
|
*/
|
||||||
|
package Modelo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author citla
|
||||||
|
*/
|
||||||
|
public class Sala {
|
||||||
|
double montoRecaudado;
|
||||||
|
|
||||||
|
public Sala() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getMontoRecaudado() {
|
||||||
|
return montoRecaudado;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMontoRecaudado(double montoRecaudado) {
|
||||||
|
this.montoRecaudado = montoRecaudado;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {//ver montorecaudado
|
||||||
|
return "Sala{" + "montoRecaudado=" + montoRecaudado + '}';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,50 @@
|
||||||
|
/*
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||||
|
*/
|
||||||
|
package Modelo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author citla
|
||||||
|
*/
|
||||||
|
public class Usuario {
|
||||||
|
|
||||||
|
String nombre;
|
||||||
|
String password;
|
||||||
|
String tipo;
|
||||||
|
|
||||||
|
public Usuario(){
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getNombre() {
|
||||||
|
return nombre;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPassword() {
|
||||||
|
return password;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTipo() {
|
||||||
|
return tipo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNombre(String nombre) {
|
||||||
|
this.nombre = nombre;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPassword(String password) {
|
||||||
|
this.password = password;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTipo(String tipo) {
|
||||||
|
this.tipo = tipo;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Usuario{" + "nombre=" + nombre + ", tipo=" + tipo + '}';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||||
|
*/
|
||||||
|
package Modelo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author citla
|
||||||
|
*/
|
||||||
|
public abstract class Zona {
|
||||||
|
|
||||||
|
double precio;
|
||||||
|
|
||||||
|
public Zona() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getPrecio() {
|
||||||
|
return precio;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPrecio(double precio) {
|
||||||
|
this.precio = precio;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue