ClientePlata.java 331 Bytes
Newer Older
willgonzz committed
1 2 3 4 5 6 7 8 9 10
public class ClientePlata extends Cliente{
    String Servicios="\nmasaje relajante\n";
    double descuento=0.10;
    public ClientePlata(String nombre,String membresia,int producto,int servicio){
        this.nombre=nombre;
        this.membresia=membresia;
        this.producto=producto;
        this.servicio=servicio;
    }
}