Skip to content

✔️ Object Oriented Programming project - Rental Store

License

Notifications You must be signed in to change notification settings

senavs/poo-locadora

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

poo-locadora

Object Oriented Programming project - Rental Store

Objective

Create a rental store project in any oriented programming language.
The store has clients and products. Clients have id number, name, address, phone and debt. They are able to rent any product in the store. Products a name and the quantity. If the client din't give the product back, a fine will placed to the client. To control clients rents, Register will have the client id and product id. To salve all the classes and register, Database will take care of it.

Controllers

All classes Client, Product and Register are considered entities and don't have methods to manage the rental store. To do that, they have controllers classes.

Notebooks

To see how the entities and controllers work, there notebooks for them.

NOTE: Register notebook calls all the others classes, so you can see all in register notebook.

Version

v.1.0.0

  • Database table and table colletion
  • Client class, controller and notebook
  • Product class, controller and notebook
  • Register class, controller and notebook