/*
 * 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 Factura;

/**
 *
 * @author felix
 */
public class Prueba {
    static public void main(String args[]) {
        Partida a = new Partida(new Producto("Lavadora", 18900), 3);
        System.out.println(a);
        
        Cliente c = new Cliente("Juan", "Calle coral 120",
        "Ciudad Jardin", "Michocan", "daskhjdalskdj", 13313);
        
        System.out.println(c);
    }
}
