/*
 * 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 Producto {
    private String descripcion;
    private double precio;
    
    Producto(String unaDescripcion, double unPrecio){
        descripcion = unaDescripcion;
        precio = unPrecio;
    } 
    
    public String getDescripcion() {
        return descripcion;
    }
    
    public double getPrecio() {
        return precio;
    }    
}
