forked from LordArwin/Labifro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Laboratorio.py
38 lines (30 loc) · 1 KB
/
Laboratorio.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
31
32
33
34
35
36
37
38
class Laboratorio:
def __init__(self,tipoLab,nomeSala,numeroChave):
self.__tipoLab=tipoLab
self.__nomeSala = nomeSala
self.__numeroChave = numeroChave
@property
def tipoLab(self):
return self.__tipoLab
@tipoLab.setter
def tipoLab(self, valor):
self.__tipoLab = valor
@property
def numeroChave(self):
return self.__numeroChave
@numeroChave.setter
def numeroChave(self, valor):
self.__numeroChave = valor
@property
def nomeSala(self):
return self.__nomeSala
@nomeSala.setter
def nomeSala(self, valor):
self.__nomeSala = valor
def validarCad(self,numeroChave,tipo):
return numeroChave == self.numeroChave and tipo == self.tipoLab
def registrarLab(self):
linhas = open("DadosLaboratorios.txt", 'a')
templab = self.tipoLab + "," + self.nomeSala + "," + self.numeroChave
linhas.write(templab + '\n')
linhas.close()