class Product {
    constructor(name, type, farcing, price) {
        this.name = name;
        this.type = type;
        this.farcing = farcing;
        this.price = price
    }
}