Cliente.java 588 Bytes
Newer Older
willgonzz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
public class Cliente{
    String nombre;
    String membresia;
    int producto;
    int servicio;
    public Cliente(String nombre,String membresia,int producto,int servicio){
        this.nombre=nombre;
        this.membresia=membresia;
        this.producto=producto;
        this.servicio=servicio;
    }
    public Cliente(){}
    
    public String getNombre(){
        return nombre;
    }
    public String getMembresia(){
        return membresia;
    }
    public int getProducto(){
        return producto;
    }
    public int getServicio(){
        return servicio;
    }


}