Sfoglia il codice sorgente

Update 'README.md'

Kristofer Younger 6 anni fa
parent
commit
2b3c165a0f
1 ha cambiato i file con 25 aggiunte e 1 eliminazioni
  1. 25
    1
      README.md

+ 25
- 1
README.md Vedi File

@@ -1,3 +1,27 @@
1 1
 # ZCW-Objects2-Ideas
2 2
 
3
-some group discussion ideas.
3
+some group discussion ideas.
4
+
5
+## 1. Person, Address, Account
6
+
7
+Build 3 classes that descrive the people, addresses and account information for a Bank's Customer.
8
+A person can have multiple Address and multiple Account.  add some interesting `meta data` to each object.
9
+
10
+
11
+## 2. Airline, Flight-Event, Airplane
12
+
13
+Build 3 classes that model an airline with many airplanes, which are assigned to a flight. Each flight
14
+has a date and times for departure and arrival. add some interesting `meta data` to each object.
15
+
16
+## 3. Recipe, Ingredient, Step
17
+
18
+Build 3 classes that model a recipe with many ingredients, and whihc have several steps to complete
19
+the recipe. add some interesting `meta data` to each object.
20
+
21
+## 4. Student, Lab, Exam
22
+
23
+Build 3 classes that model a student within a course. Each Student have many labs, and many exams. Each Lab and each exam have different inof about them Both have a final score, in a range 1..100 points. add some interesting `meta data` to each object.
24
+
25
+## 5. DeathStar, Fighter, Pilot
26
+
27
+Build 3 classes that model a StarWars DeathStar(tm) alonf with its compliment of fighters (several types), and its pilots and what they are able to fly. add some interesting `meta data` to each object.