Ejemplo n.º 1
0
    def __init__(self):
        self.tela_bibliotecario = Tela_bibliotecario()
        self.bd_livro = LivroDAO()
        self.selected_livro = None
        self.current_livro = Livro()

        self.bd_cliente = ClienteDAO()
        self.selected_cliente = None
        self.current_cliente = Cliente()

        self.bd_emprestimo = EmprestimoDAO()
Ejemplo n.º 2
0
    def __init__(self):
        self.tela_emprestimo_devolucao = Tela_emprestimo_devolucao()
        self.bd_cliente = ClienteDAO()
        self.bd_emprestimo = EmprestimoDAO()
        self.bd_livro = LivroDAO()

        self.selected = None

        self.current_cliente = Cliente()
        self.current_cliente_verifica = Cliente()
        self.current_livro = Livro()
Ejemplo n.º 3
0
 def __init__(self):
     self.tela_administrador = Tela_administrador()
     self.bd_bibli = BibliotecarioDAO()
     self.bd_emprestimo = EmprestimoDAO()
     self.selected = None
     self.current_bibliotecario = Bibliotecario()