View difference between Paste ID: xayjSMXp and vpn4x2AC
SHOW: | | - or go back to the newest paste.
1
class Customer:
2
	// functions that the Customer can perform
3
	//attributes of the Customer
4-
	define waitEmployee
4+
	define waitEmployee ()
5-
	define signContract
5+
	define signContract ()
6-
	CreditScore []
6+
	CreditScore 
7-
	CarRecord []
7+
	CarRecord
8
class Employee:
9
	//functions that the Employee can perform
10-
	define checkCredit
10+
	define checkCredit ()
11-
	define checkCarRecord
11+
	define checkCarRecord ()
12-
	define checkCarAvailability
12+
	define checkCarAvailability ()
13
class Car:
14
	//attributes of the Car
15
	Availability
16
	CarType
17
class Contract:
18
	Signed