├── .gitignore ├── Practicas ├── accidentes │ ├── 2023_Accidentalidad.csv │ ├── Estructura_ConjuntoDatos_Accidentesv2.pdf │ └── README.md ├── aemet │ ├── Aemet20171029.csv │ ├── Aemet20171030.csv │ ├── Aemet20171031.csv │ └── README.md ├── buerguer-pig │ └── README.md ├── herencia-dto │ ├── README.md │ └── personas.csv ├── moria │ └── Enunciado.pdf └── productos │ ├── README.md │ └── products.csv ├── README.md ├── Soluciones ├── 01-Ficheros-Texto │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 02-Ficheros-CSV │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ │ ├── vehiculos-back.csv │ │ └── vehiculos.csv │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ └── models │ │ └── Vehiculo.kt ├── 03-Ficheros-CSV-DTO │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ │ ├── vehiculos-back.csv │ │ └── vehiculos.csv │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ ├── dto │ │ └── VehiculoDto.kt │ │ ├── mappers │ │ └── VehiculoMapper.kt │ │ └── models │ │ └── Vehiculo.kt ├── 04-Aula-CSV-Resources │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ ├── Main.kt │ │ ├── dto │ │ │ └── PersonasDto.kt │ │ ├── mappers │ │ │ └── PersonaMapper.kt │ │ └── models │ │ │ ├── Docente.kt │ │ │ ├── Estudiante.kt │ │ │ └── Persona.kt │ │ └── resources │ │ ├── README.md │ │ └── personas.csv ├── 05-Ficheros-JSON-DTO │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ │ ├── vehiculos.csv │ │ └── vehiculos.json │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ ├── dto │ │ └── VehiculoDto.kt │ │ ├── mappers │ │ └── VehiculoMapper.kt │ │ └── models │ │ └── Vehiculo.kt ├── 06-Aula-JSON-Resources │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ │ └── informe.json │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ ├── Main.kt │ │ ├── dto │ │ │ ├── DocenteDto.kt │ │ │ ├── EstudianteDto.kt │ │ │ ├── InformeDto.kt │ │ │ └── PersonasDto.kt │ │ ├── import │ │ │ ├── DocenteImportDto.kt │ │ │ ├── EstudianteImportDto.kt │ │ │ └── ImportDto.kt │ │ ├── mappers │ │ │ └── PersonaMapper.kt │ │ └── models │ │ │ ├── Docente.kt │ │ │ ├── Estudiante.kt │ │ │ └── Persona.kt │ │ └── resources │ │ ├── README.md │ │ └── personas.csv ├── 07-Pokedex-JSON │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ ├── Main.kt │ │ ├── import │ │ │ ├── NextEvolution.kt │ │ │ ├── PokedexDto.kt │ │ │ ├── PokemonDto.kt │ │ │ └── PrevEvolution.kt │ │ └── models │ │ │ └── Pokemon.kt │ │ └── resources │ │ └── pokemon.json ├── 08-Barcos-FileService │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── uiDesigner.xml │ ├── build.gradle.kts │ ├── data │ │ ├── barcos-back.csv │ │ ├── barcos.csv │ │ └── barcos.json │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── Main.kt │ │ │ ├── dev │ │ │ └── joseluisgs │ │ │ │ └── validator │ │ │ │ └── barco │ │ │ │ └── BarcosValidator.kt │ │ │ ├── dto │ │ │ └── barco │ │ │ │ └── BarcoDto.kt │ │ │ ├── exceptions │ │ │ ├── barco │ │ │ │ └── BarcoExceptions.kt │ │ │ └── storage │ │ │ │ └── StorageExceptions.kt │ │ │ ├── mappers │ │ │ └── barco │ │ │ │ └── BarcoMapper.kt │ │ │ ├── models │ │ │ └── barco │ │ │ │ ├── Atunero.kt │ │ │ │ ├── Barco.kt │ │ │ │ ├── Mantenimiento.kt │ │ │ │ ├── Marisquero.kt │ │ │ │ ├── PescarConCaña.kt │ │ │ │ └── PescarConRed.kt │ │ │ ├── repositories │ │ │ ├── barco │ │ │ │ ├── BarcosRepository.kt │ │ │ │ └── BarcosRepositoryImpl.kt │ │ │ ├── cache │ │ │ │ ├── Cache.kt │ │ │ │ └── CacheImpl.kt │ │ │ └── crud │ │ │ │ └── CrudRepository.kt │ │ │ └── services │ │ │ ├── barco │ │ │ ├── BarcosService.kt │ │ │ └── BarcosServiceImpl.kt │ │ │ └── storage │ │ │ ├── barco │ │ │ ├── BarcosFileStorageCsv.kt │ │ │ └── BarcosFileStorageJson.kt │ │ │ └── base │ │ │ └── FileStorage.kt │ │ └── test │ │ └── kotlin │ │ ├── dev │ │ └── joseluisgs │ │ │ └── validator │ │ │ └── barco │ │ │ └── BarcosValidatorTest.kt │ │ └── services │ │ └── barco │ │ └── BarcosServiceImplTest.kt ├── 09-Barcos-FileService-Config-Backup │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── uiDesigner.xml │ ├── backup │ │ └── barcos.zip │ ├── build.gradle.kts │ ├── data │ │ ├── barcos-2.json │ │ ├── barcos-back.csv │ │ ├── barcos.csv │ │ └── barcos.json │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── Main.kt │ │ │ ├── config │ │ │ │ └── Config.kt │ │ │ ├── dev │ │ │ │ └── joseluisgs │ │ │ │ │ └── validator │ │ │ │ │ └── barco │ │ │ │ │ └── BarcosValidator.kt │ │ │ ├── dto │ │ │ │ └── barco │ │ │ │ │ └── BarcoDto.kt │ │ │ ├── exceptions │ │ │ │ ├── barco │ │ │ │ │ └── BarcoExceptions.kt │ │ │ │ └── storage │ │ │ │ │ └── StorageExceptions.kt │ │ │ ├── mappers │ │ │ │ └── barco │ │ │ │ │ └── BarcoMapper.kt │ │ │ ├── models │ │ │ │ └── barco │ │ │ │ │ ├── Atunero.kt │ │ │ │ │ ├── Barco.kt │ │ │ │ │ ├── Mantenimiento.kt │ │ │ │ │ ├── Marisquero.kt │ │ │ │ │ ├── PescarConCaña.kt │ │ │ │ │ └── PescarConRed.kt │ │ │ ├── repositories │ │ │ │ ├── barco │ │ │ │ │ ├── BarcosRepository.kt │ │ │ │ │ └── BarcosRepositoryImpl.kt │ │ │ │ ├── cache │ │ │ │ │ ├── Cache.kt │ │ │ │ │ └── CacheImpl.kt │ │ │ │ └── crud │ │ │ │ │ └── CrudRepository.kt │ │ │ └── services │ │ │ │ ├── backup │ │ │ │ ├── Backup.kt │ │ │ │ └── BackupImpl.kt │ │ │ │ ├── barco │ │ │ │ ├── BarcosService.kt │ │ │ │ └── BarcosServiceImpl.kt │ │ │ │ └── storage │ │ │ │ ├── barco │ │ │ │ ├── BarcosFileStorageCsv.kt │ │ │ │ └── BarcosFileStorageJson.kt │ │ │ │ └── base │ │ │ │ └── FileStorage.kt │ │ └── resources │ │ │ └── config.properties │ │ └── test │ │ └── kotlin │ │ ├── dev │ │ └── joseluisgs │ │ │ └── validator │ │ │ └── barco │ │ │ └── BarcosValidatorTest.kt │ │ └── services │ │ └── barco │ │ └── BarcosServiceImplTest.kt ├── 10-Ficheros-XML │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ │ ├── venta.json │ │ └── venta.xml │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ └── models │ │ ├── Cliente.kt │ │ ├── Producto.kt │ │ └── Venta.kt ├── 11-AccidentesMadrid │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ ├── Main.kt │ │ └── dev │ │ │ └── joseluisgs │ │ │ ├── models │ │ │ └── Accidente.kt │ │ │ └── services │ │ │ └── AccidentesService.kt │ │ └── resources │ │ ├── 2023_Accidentalidad.csv │ │ └── Estructura_ConjuntoDatos_Accidentesv2.pdf ├── 12-Ficheros-Serializacion │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ │ ├── venta.dat │ │ ├── venta.json │ │ └── venta.xml │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ └── models │ │ ├── Cliente.kt │ │ ├── Producto.kt │ │ └── Venta.kt ├── 13-Ficheros-Binarios │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ │ ├── hello.dat │ │ └── hello.txt │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt ├── 14-Ficheros-Binarios-Venta │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ │ ├── venta.dat │ │ ├── venta.json │ │ └── venta.xml │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ └── models │ │ ├── Cliente.kt │ │ ├── Producto.kt │ │ └── Venta.kt ├── 15-Aemet │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── reports │ │ ├── report-2024-02-29.json │ │ └── report-2024-02-29.xml │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ ├── Main.kt │ │ ├── models │ │ │ ├── Informe.kt │ │ │ └── Medicion.kt │ │ └── services │ │ │ └── MeteoService.kt │ │ └── resources │ │ ├── Aemet20171029.csv │ │ ├── Aemet20171030.csv │ │ ├── Aemet20171031.csv │ │ └── README.md ├── 16-Ficheros-Aleatorio │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ │ ├── enteros.dat │ │ └── texto.txt │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt └── 18-Alumnado │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── gradle.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── kotlinc.xml │ └── misc.xml │ ├── build.gradle.kts │ ├── data │ ├── alumnos.bin │ ├── alumnos.csv │ ├── alumnos.dat │ ├── alumnos.json │ ├── alumnos.txt │ └── alumnos.xml │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src │ └── main │ └── kotlin │ ├── Main.kt │ ├── factories │ └── AlumnadoFactory.kt │ ├── models │ └── Alumno.kt │ └── services │ ├── Storage.kt │ ├── StorageBinario.kt │ ├── StorageCsv.kt │ ├── StorageJson.kt │ ├── StorageSerializable.kt │ ├── StorageTexto.kt │ └── StorageXml.kt └── images ├── file.png ├── java-io-vs-nio.png └── jeraquia.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/.gitignore -------------------------------------------------------------------------------- /Practicas/accidentes/2023_Accidentalidad.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/accidentes/2023_Accidentalidad.csv -------------------------------------------------------------------------------- /Practicas/accidentes/Estructura_ConjuntoDatos_Accidentesv2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/accidentes/Estructura_ConjuntoDatos_Accidentesv2.pdf -------------------------------------------------------------------------------- /Practicas/accidentes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/accidentes/README.md -------------------------------------------------------------------------------- /Practicas/aemet/Aemet20171029.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/aemet/Aemet20171029.csv -------------------------------------------------------------------------------- /Practicas/aemet/Aemet20171030.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/aemet/Aemet20171030.csv -------------------------------------------------------------------------------- /Practicas/aemet/Aemet20171031.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/aemet/Aemet20171031.csv -------------------------------------------------------------------------------- /Practicas/aemet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/aemet/README.md -------------------------------------------------------------------------------- /Practicas/buerguer-pig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/buerguer-pig/README.md -------------------------------------------------------------------------------- /Practicas/herencia-dto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/herencia-dto/README.md -------------------------------------------------------------------------------- /Practicas/herencia-dto/personas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/herencia-dto/personas.csv -------------------------------------------------------------------------------- /Practicas/moria/Enunciado.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/moria/Enunciado.pdf -------------------------------------------------------------------------------- /Practicas/productos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/productos/README.md -------------------------------------------------------------------------------- /Practicas/productos/products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Practicas/productos/products.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/README.md -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/.gitignore -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/gradlew -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/01-Ficheros-Texto/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/01-Ficheros-Texto/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/.gitignore -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/data/vehiculos-back.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/data/vehiculos-back.csv -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/data/vehiculos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/data/vehiculos.csv -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/gradlew -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/02-Ficheros-CSV/src/main/kotlin/models/Vehiculo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/02-Ficheros-CSV/src/main/kotlin/models/Vehiculo.kt -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/.gitignore -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/.idea/.name: -------------------------------------------------------------------------------- 1 | Ficheros-CSV -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/data/vehiculos-back.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/data/vehiculos-back.csv -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/data/vehiculos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/data/vehiculos.csv -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/gradlew -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/src/main/kotlin/dto/VehiculoDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/src/main/kotlin/dto/VehiculoDto.kt -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/src/main/kotlin/mappers/VehiculoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/src/main/kotlin/mappers/VehiculoMapper.kt -------------------------------------------------------------------------------- /Soluciones/03-Ficheros-CSV-DTO/src/main/kotlin/models/Vehiculo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/03-Ficheros-CSV-DTO/src/main/kotlin/models/Vehiculo.kt -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/.gitignore -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/gradlew -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/src/main/kotlin/dto/PersonasDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/src/main/kotlin/dto/PersonasDto.kt -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/src/main/kotlin/mappers/PersonaMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/src/main/kotlin/mappers/PersonaMapper.kt -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/src/main/kotlin/models/Docente.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/src/main/kotlin/models/Docente.kt -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/src/main/kotlin/models/Estudiante.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/src/main/kotlin/models/Estudiante.kt -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/src/main/kotlin/models/Persona.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/src/main/kotlin/models/Persona.kt -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/src/main/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/src/main/resources/README.md -------------------------------------------------------------------------------- /Soluciones/04-Aula-CSV-Resources/src/main/resources/personas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/04-Aula-CSV-Resources/src/main/resources/personas.csv -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/.gitignore -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/.idea/.name: -------------------------------------------------------------------------------- 1 | Ficheros-CSV -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/data/vehiculos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/data/vehiculos.csv -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/data/vehiculos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/data/vehiculos.json -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/gradlew -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/src/main/kotlin/dto/VehiculoDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/src/main/kotlin/dto/VehiculoDto.kt -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/src/main/kotlin/mappers/VehiculoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/src/main/kotlin/mappers/VehiculoMapper.kt -------------------------------------------------------------------------------- /Soluciones/05-Ficheros-JSON-DTO/src/main/kotlin/models/Vehiculo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/05-Ficheros-JSON-DTO/src/main/kotlin/models/Vehiculo.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/.gitignore -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/.idea/.name: -------------------------------------------------------------------------------- 1 | Aula-CSV -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/data/informe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/data/informe.json -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/gradlew -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/dto/DocenteDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/dto/DocenteDto.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/dto/EstudianteDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/dto/EstudianteDto.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/dto/InformeDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/dto/InformeDto.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/dto/PersonasDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/dto/PersonasDto.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/import/DocenteImportDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/import/DocenteImportDto.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/import/EstudianteImportDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/import/EstudianteImportDto.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/import/ImportDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/import/ImportDto.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/mappers/PersonaMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/mappers/PersonaMapper.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/models/Docente.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/models/Docente.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/models/Estudiante.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/models/Estudiante.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/kotlin/models/Persona.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/kotlin/models/Persona.kt -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/resources/README.md -------------------------------------------------------------------------------- /Soluciones/06-Aula-JSON-Resources/src/main/resources/personas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/06-Aula-JSON-Resources/src/main/resources/personas.csv -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/.gitignore -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/gradlew -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/src/main/kotlin/import/NextEvolution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/src/main/kotlin/import/NextEvolution.kt -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/src/main/kotlin/import/PokedexDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/src/main/kotlin/import/PokedexDto.kt -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/src/main/kotlin/import/PokemonDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/src/main/kotlin/import/PokemonDto.kt -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/src/main/kotlin/import/PrevEvolution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/src/main/kotlin/import/PrevEvolution.kt -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/src/main/kotlin/models/Pokemon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/src/main/kotlin/models/Pokemon.kt -------------------------------------------------------------------------------- /Soluciones/07-Pokedex-JSON/src/main/resources/pokemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/07-Pokedex-JSON/src/main/resources/pokemon.json -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/.gitignore -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/data/barcos-back.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/data/barcos-back.csv -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/data/barcos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/data/barcos.csv -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/data/barcos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/data/barcos.json -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/gradle.properties -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/gradlew -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/dev/joseluisgs/validator/barco/BarcosValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/dev/joseluisgs/validator/barco/BarcosValidator.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/dto/barco/BarcoDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/dto/barco/BarcoDto.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/exceptions/barco/BarcoExceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/exceptions/barco/BarcoExceptions.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/exceptions/storage/StorageExceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/exceptions/storage/StorageExceptions.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/mappers/barco/BarcoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/mappers/barco/BarcoMapper.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/Atunero.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/Atunero.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/Barco.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/Barco.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/Mantenimiento.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/Mantenimiento.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/Marisquero.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/Marisquero.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/PescarConCaña.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/PescarConCaña.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/PescarConRed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/models/barco/PescarConRed.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/barco/BarcosRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/barco/BarcosRepository.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/barco/BarcosRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/barco/BarcosRepositoryImpl.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/cache/Cache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/cache/Cache.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/cache/CacheImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/cache/CacheImpl.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/crud/CrudRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/repositories/crud/CrudRepository.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/services/barco/BarcosService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/services/barco/BarcosService.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/services/barco/BarcosServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/services/barco/BarcosServiceImpl.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/services/storage/barco/BarcosFileStorageCsv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/services/storage/barco/BarcosFileStorageCsv.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/services/storage/barco/BarcosFileStorageJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/services/storage/barco/BarcosFileStorageJson.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/main/kotlin/services/storage/base/FileStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/main/kotlin/services/storage/base/FileStorage.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/test/kotlin/dev/joseluisgs/validator/barco/BarcosValidatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/test/kotlin/dev/joseluisgs/validator/barco/BarcosValidatorTest.kt -------------------------------------------------------------------------------- /Soluciones/08-Barcos-FileService/src/test/kotlin/services/barco/BarcosServiceImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/08-Barcos-FileService/src/test/kotlin/services/barco/BarcosServiceImplTest.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/.gitignore -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/backup/barcos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/backup/barcos.zip -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/data/barcos-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/data/barcos-2.json -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/data/barcos-back.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/data/barcos-back.csv -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/data/barcos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/data/barcos.csv -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/data/barcos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/data/barcos.json -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/gradle.properties -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/gradlew -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/config/Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/config/Config.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/dev/joseluisgs/validator/barco/BarcosValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/dev/joseluisgs/validator/barco/BarcosValidator.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/dto/barco/BarcoDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/dto/barco/BarcoDto.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/exceptions/barco/BarcoExceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/exceptions/barco/BarcoExceptions.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/exceptions/storage/StorageExceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/exceptions/storage/StorageExceptions.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/mappers/barco/BarcoMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/mappers/barco/BarcoMapper.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/Atunero.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/Atunero.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/Barco.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/Barco.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/Mantenimiento.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/Mantenimiento.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/Marisquero.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/Marisquero.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/PescarConCaña.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/PescarConCaña.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/PescarConRed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/models/barco/PescarConRed.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/barco/BarcosRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/barco/BarcosRepository.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/barco/BarcosRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/barco/BarcosRepositoryImpl.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/cache/Cache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/cache/Cache.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/cache/CacheImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/cache/CacheImpl.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/crud/CrudRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/repositories/crud/CrudRepository.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/backup/Backup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/backup/Backup.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/backup/BackupImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/backup/BackupImpl.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/barco/BarcosService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/barco/BarcosService.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/barco/BarcosServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/barco/BarcosServiceImpl.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/storage/barco/BarcosFileStorageCsv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/storage/barco/BarcosFileStorageCsv.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/storage/barco/BarcosFileStorageJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/storage/barco/BarcosFileStorageJson.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/storage/base/FileStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/kotlin/services/storage/base/FileStorage.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/main/resources/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/main/resources/config.properties -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/test/kotlin/dev/joseluisgs/validator/barco/BarcosValidatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/test/kotlin/dev/joseluisgs/validator/barco/BarcosValidatorTest.kt -------------------------------------------------------------------------------- /Soluciones/09-Barcos-FileService-Config-Backup/src/test/kotlin/services/barco/BarcosServiceImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/09-Barcos-FileService-Config-Backup/src/test/kotlin/services/barco/BarcosServiceImplTest.kt -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/.gitignore -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/data/venta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/data/venta.json -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/data/venta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/data/venta.xml -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/gradlew -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/src/main/kotlin/models/Cliente.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/src/main/kotlin/models/Cliente.kt -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/src/main/kotlin/models/Producto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/src/main/kotlin/models/Producto.kt -------------------------------------------------------------------------------- /Soluciones/10-Ficheros-XML/src/main/kotlin/models/Venta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/10-Ficheros-XML/src/main/kotlin/models/Venta.kt -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/.gitignore -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/gradlew -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/src/main/kotlin/dev/joseluisgs/models/Accidente.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/src/main/kotlin/dev/joseluisgs/models/Accidente.kt -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/src/main/kotlin/dev/joseluisgs/services/AccidentesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/src/main/kotlin/dev/joseluisgs/services/AccidentesService.kt -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/src/main/resources/2023_Accidentalidad.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/src/main/resources/2023_Accidentalidad.csv -------------------------------------------------------------------------------- /Soluciones/11-AccidentesMadrid/src/main/resources/Estructura_ConjuntoDatos_Accidentesv2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/11-AccidentesMadrid/src/main/resources/Estructura_ConjuntoDatos_Accidentesv2.pdf -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/.gitignore -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/.idea/.name: -------------------------------------------------------------------------------- 1 | Ficheros-XML -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/data/venta.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/data/venta.dat -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/data/venta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/data/venta.json -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/data/venta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/data/venta.xml -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/gradlew -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/src/main/kotlin/models/Cliente.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/src/main/kotlin/models/Cliente.kt -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/src/main/kotlin/models/Producto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/src/main/kotlin/models/Producto.kt -------------------------------------------------------------------------------- /Soluciones/12-Ficheros-Serializacion/src/main/kotlin/models/Venta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/12-Ficheros-Serializacion/src/main/kotlin/models/Venta.kt -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/.gitignore -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/data/hello.dat: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/data/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/gradlew -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/13-Ficheros-Binarios/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/13-Ficheros-Binarios/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/.gitignore -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/.idea/.name: -------------------------------------------------------------------------------- 1 | Ficheros-XML -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/data/venta.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/data/venta.dat -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/data/venta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/data/venta.json -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/data/venta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/data/venta.xml -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/gradlew -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/src/main/kotlin/models/Cliente.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/src/main/kotlin/models/Cliente.kt -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/src/main/kotlin/models/Producto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/src/main/kotlin/models/Producto.kt -------------------------------------------------------------------------------- /Soluciones/14-Ficheros-Binarios-Venta/src/main/kotlin/models/Venta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/14-Ficheros-Binarios-Venta/src/main/kotlin/models/Venta.kt -------------------------------------------------------------------------------- /Soluciones/15-Aemet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/.gitignore -------------------------------------------------------------------------------- /Soluciones/15-Aemet/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/15-Aemet/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/15-Aemet/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/15-Aemet/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/15-Aemet/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/15-Aemet/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/15-Aemet/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/15-Aemet/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/15-Aemet/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/15-Aemet/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/gradlew -------------------------------------------------------------------------------- /Soluciones/15-Aemet/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/15-Aemet/reports/report-2024-02-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/reports/report-2024-02-29.json -------------------------------------------------------------------------------- /Soluciones/15-Aemet/reports/report-2024-02-29.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/reports/report-2024-02-29.xml -------------------------------------------------------------------------------- /Soluciones/15-Aemet/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/15-Aemet/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/15-Aemet/src/main/kotlin/models/Informe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/src/main/kotlin/models/Informe.kt -------------------------------------------------------------------------------- /Soluciones/15-Aemet/src/main/kotlin/models/Medicion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/src/main/kotlin/models/Medicion.kt -------------------------------------------------------------------------------- /Soluciones/15-Aemet/src/main/kotlin/services/MeteoService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/src/main/kotlin/services/MeteoService.kt -------------------------------------------------------------------------------- /Soluciones/15-Aemet/src/main/resources/Aemet20171029.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/src/main/resources/Aemet20171029.csv -------------------------------------------------------------------------------- /Soluciones/15-Aemet/src/main/resources/Aemet20171030.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/src/main/resources/Aemet20171030.csv -------------------------------------------------------------------------------- /Soluciones/15-Aemet/src/main/resources/Aemet20171031.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/src/main/resources/Aemet20171031.csv -------------------------------------------------------------------------------- /Soluciones/15-Aemet/src/main/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/15-Aemet/src/main/resources/README.md -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/.gitignore -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/data/enteros.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/data/enteros.dat -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/data/texto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/data/texto.txt -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/gradlew -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/16-Ficheros-Aleatorio/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/16-Ficheros-Aleatorio/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/.gitignore -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/.idea/.gitignore -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/.idea/gradle.xml -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/.idea/misc.xml -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/build.gradle.kts -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/data/alumnos.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/data/alumnos.bin -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/data/alumnos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/data/alumnos.csv -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/data/alumnos.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/data/alumnos.dat -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/data/alumnos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/data/alumnos.json -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/data/alumnos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/data/alumnos.txt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/data/alumnos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/data/alumnos.xml -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/gradlew -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/gradlew.bat -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/settings.gradle.kts -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/factories/AlumnadoFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/factories/AlumnadoFactory.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/models/Alumno.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/models/Alumno.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/services/Storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/services/Storage.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/services/StorageBinario.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/services/StorageBinario.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/services/StorageCsv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/services/StorageCsv.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/services/StorageJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/services/StorageJson.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/services/StorageSerializable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/services/StorageSerializable.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/services/StorageTexto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/services/StorageTexto.kt -------------------------------------------------------------------------------- /Soluciones/18-Alumnado/src/main/kotlin/services/StorageXml.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/Soluciones/18-Alumnado/src/main/kotlin/services/StorageXml.kt -------------------------------------------------------------------------------- /images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/images/file.png -------------------------------------------------------------------------------- /images/java-io-vs-nio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/images/java-io-vs-nio.png -------------------------------------------------------------------------------- /images/jeraquia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseluisgs/Programacion-07-2023-2024/HEAD/images/jeraquia.png --------------------------------------------------------------------------------