-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathorder
40 lines (27 loc) · 876 Bytes
/
order
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* ************************************************************************* *\
* Programmierung 1 HS 2018 - Serie 3-2 *
* Anastasija Novikova 16-825-390 *
* Raphaela Seeger 16-113-441 *
\* ************************************************************************* */
import java.util.Date;
import java.util.Scanner;
import java.text.*;
import java.util.Calendar;
public class Order
{
private int id;
private String customerName;
private String customerAddress;
public String setCustomerName(String customerName)
{
return(customerName);
}
public String setCustomerAddress(String customerAddress)
{
return(customerAddress);
}
public Book addBook(Book book)
{
return book;
}
}