An open API service indexing awesome lists of open source software.

https://github.com/relson/agr-inv

Agregador de investimentos - Playlist do Canal Build & Run
https://github.com/relson/agr-inv

java spring-boot

Last synced: 3 months ago
JSON representation

Agregador de investimentos - Playlist do Canal Build & Run

Awesome Lists containing this project

README

          

# agr-inv
Agregador de investimentos - Playlist do Canal Build & Run

## Videos
- [`ADI 1` - Criando um CRUD com Java Spring Boot e MySQL](https://www.youtube.com/watch?v=Tnl4YnB6E54&list=PLxCh3SsamNs62j6T7bv6f1_1j9H9pEzkC) -

- [Spring Initi](https://start.spring.io/)

## Diagrama

```mermaid
classDiagram
class Investment {
+String name
+float value
+String type
+getValue()
+setValue(float value)
}
class Portfolio {
+String owner
+List~Investment~ investments
+addInvestment(Investment investment)
+removeInvestment(Investment investment)
+getTotalValue()
}
Portfolio --> Investment
```