export class Data { name: string; price: any; quantity: any;
total: any;
constructor(name: string, price: any, quantity: any) { this.name = name; this.price = price; this.quantity = quantity;
this.total = price * quantity;
} }