Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.forge.project.jdbc.dto;
- public class Ejercicios {
- private String nombre;
- private String apellido;
- private Integer edad;
- private String serie;
- private String curso;
- private String nacionalidad;
- private String deporte;
- private String genero;
- private String ciudad;
- public Ejercicios(String nombre, String apellido, Integer edad, String serie, String curso, String nacionalidad, String deporte, String genero, String ciudad) {
- this.nombre = nombre;
- this.apellido = apellido;
- this.edad = edad;
- this.serie = serie;
- this.curso = curso;
- this.nacionalidad = nacionalidad;
- this.deporte = deporte;
- this.genero = genero;
- this.ciudad = ciudad;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement