Project

General

Profile

« Previous | Next » 

Revision 52891

Added by Tsampikos Livisianos over 5 years ago

add empty constructors

View differences:

Customer.java
8 8
 * Created by tsampikos on 31/10/2016.
9 9
 */
10 10
public class Customer {
11
    private final String id;
11
    private String id = null;
12 12

  
13
    private final List<ReportItem> reportItems;
13
    private List<ReportItem> reportItems;
14 14

  
15
    public Customer() {
16
    }
17

  
15 18
    public Customer(String id, List<ReportItem> reportItems) {
16 19
        this.id = id;
17 20
        this.reportItems = reportItems;

Also available in: Unified diff