diff --git a/docs/DesignPatterns/CreationalGoFs.md b/docs/DesignPatterns/CreationalGoFs.md index bb1406a..ee22311 100644 --- a/docs/DesignPatterns/CreationalGoFs.md +++ b/docs/DesignPatterns/CreationalGoFs.md @@ -6,12 +6,15 @@ | 25/10/2020 | 0.2 | Adição do padrão Factory Method | [Caio Vinícius](https://github.com/caiovfernandes), [Guilherme Mendes](https://github.com/guilherme-mendes), [Iuri Severo](https://github.com/iurisevero), [João Guedes](https://github.com/sudjoao) e [Lucas Fellipe](https://github.com/lucasfcm9) | | 25/10/2020 | 0.2 | Adição do padrão Singleton | [Caio Vinícius](https://github.com/caiovfernandes), [Guilherme Mendes](https://github.com/guilherme-mendes), [Iuri Severo](https://github.com/iurisevero), [João Guedes](https://github.com/sudjoao) e [Lucas Fellipe](https://github.com/lucasfcm9) | | 26/10/2020 | 1.0 | Revisão do documento | [Caio Vinícius](https://github.com/caiovfernandes), [Guilherme Mendes](https://github.com/guilherme-mendes), [Iuri Severo](https://github.com/iurisevero), [João Guedes](https://github.com/sudjoao) e [Lucas Fellipe](https://github.com/lucasfcm9) | +| 26/10/2020 | 1.1 | Adição do Management Generator em Factory Method | [Iuri Severo](https://github.com/iurisevero) e [João Guedes](https://github.com/sudjoao) | +| 20/11/2020 | 1.2 | Revisão do Management Generator em Factory Method | [Guilherme Mendes](https://github.com/guilherme-mendes) | ## Factory Method Factory Method Example -[project/api/generator_report/generator_report.py](https://github.com/UnBArqDsw/2020.1_G13_iGado_Backend/blob/master/project/api/generator_report/generator_report.py)
+[project/api/factories/report_generator.py](https://github.com/UnBArqDsw/2020.1_G13_iGado_Backend/blob/master/project/api/factories/report_generator.py)
+[project/api/factories/management_generator.py](https://github.com/UnBArqDsw/2020.1_G13_iGado_Backend/blob/master/project/api/factories/management_generator.py)
[project/\_\_init\_\_.py](https://github.com/UnBArqDsw/2020.1_G13_iGado_Backend/blob/master/project/__init__.py) ## Singleton