https://github.com/matheusadc/reparo-veiculos
The code aims to enable the management of vehicles to be repaired or already repaired within an Auto Repair Shop.
https://github.com/matheusadc/reparo-veiculos
eclipse-ide java lpoo
Last synced: about 1 year ago
JSON representation
The code aims to enable the management of vehicles to be repaired or already repaired within an Auto Repair Shop.
- Host: GitHub
- URL: https://github.com/matheusadc/reparo-veiculos
- Owner: MatheusADC
- Created: 2024-09-16T04:02:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-30T08:37:15.000Z (over 1 year ago)
- Last Synced: 2025-01-30T09:29:18.515Z (over 1 year ago)
- Topics: eclipse-ide, java, lpoo
- Language: Java
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
Description
The code aims to enable the management of vehicles to be repaired or already repaired within an Auto Repair Shop.
#
Menu
### Initial Menu

#
Functionalities
## 1. Add Car
Adds the vehicle by providing the license plate, model, issue, and service cost.
### Add

## 2. Consult Car
Checks the existence of the car by the provided license plate and, if it exists, displays the relevant information.
### Consult

## 3. Remove Car
Removes the vehicle by providing the license plate.
### Remove

## 4. List all cars
Lists all the cars registered in the system.
### List

## 5. Exit
The break inserted in the code is executed when the "5" key is pressed.
> [!CAUTION]
> For the vehicle addition function, there is a check that prevents adding an already existing vehicle. As for the other functions, there is a check that allows verifying whether the vehicle exists or not within the Auto Repair Shop.