Advertisement
JVFabia

springboot EjercicioDTO

Oct 9th, 2020
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.77 KB | None | 0 0
  1. package com.forge.project.jdbc.dto;
  2.  
  3. public class Ejercicios {
  4.    private String nombre;
  5.     private String apellido;
  6.     private Integer edad;
  7.     private String serie;
  8.     private String curso;
  9.     private String nacionalidad;
  10.     private String deporte;
  11.     private String genero;
  12.     private String ciudad;
  13.  
  14.     public Ejercicios(String nombre, String apellido, Integer edad, String serie, String curso, String nacionalidad, String deporte, String genero, String ciudad) {
  15.         this.nombre = nombre;
  16.         this.apellido = apellido;
  17.         this.edad = edad;
  18.         this.serie = serie;
  19.         this.curso = curso;
  20.         this.nacionalidad = nacionalidad;
  21.         this.deporte = deporte;
  22.         this.genero = genero;
  23.         this.ciudad = ciudad;
  24.     }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement