コード例 #1
0
ファイル: Main.py プロジェクト: MatheusMatheus/Biblioteca
from BibliotecaNegocio import BibliotecaNegocio
from Emprestimo import Emprestimo

biblioteca = BibliotecaNegocio()

biblioteca.addLivros()
biblioteca.addUsuarios()

emprestimo = Emprestimo(biblioteca)
emprestimo.realizaEmprestimo()