You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
375 B

package com.company.OnlineShop;
public class ShopingCard {
public static void main(String[] args){
Article article = new Book(10, 34.9997, "WebSockets", "Luigi Lo lacono", 2015);
DVD dvd1 = new DVD(20, 17.7905, "Spiel mir das Lied vom Tod", 1, 1);
DVD dvd2 = new DVD(21, 9.996, "Casablanca", 1, 1);
}
public void showBill(){
}
}