-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.java
More file actions
75 lines (50 loc) · 1.87 KB
/
Copy pathmain.java
File metadata and controls
75 lines (50 loc) · 1.87 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import java.util.*;
import java.io.*;
public class main {
public static void main(String[] args){
/*
Books book1 = new Books();
System.out.println(book1.getISBN());
System.out.println(book1.getTitle());
*/
/*
Books book2 = new Books("1", "Percy Jackson", "ABC123");
System.out.println(book2.getISBN());
System.out.println(book2.getTitle());
System.out.println(book2.getCollectionID());
*/
Date dob = new Date(0);
Member member1 = new Member();
ArrayList<Member> memArr = new ArrayList<>();
memArr.add(member1);
//UpdateMember.update(memArr);
//UpdateMember.update(member1);
newCollectionEvent.newCollectionEvent();
RemoveCollectionEvent.removeCollectionEvent();
Checkout.checkouts(memArr);
checkInEvent.checkInEvent(memArr);
//should make some data for each (books, dvd, journals, newpapers, professor, student, external, technicians)
//------------------------------------
//check all is working
//newEmployee,
//newEmployee.newEmployeeEvent();
//YAYYYY works
//newCOllectionEvent,
//newCollectionEvent.newCollectionEvent();
//it workzzz
//newMemberEvent,
//newMemberEvent.newMemberEvent();
//yayyyyy it works
//removeCollectionEvent,
//removeCollectionEvent.removeCollectionEvent();
//yay it worksssz
//removeEmployeeEvent,
//removeEmployeeEvent.removeEmployeeEvent();
//it works ayayyayayayyayayyyyay
//updateMember,
//CheckInEvent,
//checkInEvent.checkInEvent();
//works just need to change txt files name
//checkoutEvent
}
}