-
Notifications
You must be signed in to change notification settings - Fork 2
/
Facility.py
30 lines (27 loc) · 1.59 KB
/
Facility.py
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
class Facility:
def __init__(self, facilityName, adultMaleCount, adultFemaleCount, juvenileMaleCount, juvenileFemaleCount,
inCountOutCountMale, inCountOutCountFemale, workersMale, workersFemale, furloughMale,
furloughFemale, openWardMale, openWardFemale, emergTripsMale, emergTripsFemale):
self.facilityName = facilityName
self.adultMaleCount = adultMaleCount
self.adultFemaleCount = adultFemaleCount
self.juvenileMaleCount = juvenileMaleCount
self.juvenileFemaleCount = juvenileFemaleCount
self.inCountOutCountMale = inCountOutCountMale
self.inCountOutCountFemale = inCountOutCountFemale
self.workersMale = workersMale
self.workersFemale = workersFemale
self.furloughMale = furloughMale
self.furloughFemale = furloughFemale
self.openWardMale = openWardMale
self.openWardFemale = openWardFemale
self.emergTripsMale = emergTripsMale
self.emergTripsFemale = emergTripsFemale
def print_description(self):
print(self.facilityName, self.adultMaleCount, self.adultFemaleCount, self.juvenileMaleCount, self.juvenileFemaleCount,
self.inCountOutCountMale, self.inCountOutCountFemale, self.workersMale, self.workersFemale, self.furloughMale,
self.furloughFemale,
self.openWardMale, self.openWardFemale, self.emergTripsMale, self.emergTripsFemale)
#TODO: Below are the methods moved out of JailJawn.py At somepoint I may need to use these facility objects again
#f = Facility(*argumentsArray)
#f.print_description()