aboutsummaryrefslogtreecommitdiff
path: root/Week16 Webshop/src/com/camilstaps/webshop/article/WashingMachine.java
blob: 37325f5b7bbbeb3bf02d3ce7e908fb14e5985510 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2015 Camil Staps
 */
package com.camilstaps.webshop.article;

/**
 *
 * @author camilstaps
 */
public class WashingMachine extends Article {

    public WashingMachine() {
        super("Washing machine", 499);
    }

    @Override
    public double getShippingCosts() {
        return 30;
    }
    
}