PostulanteLenguaje.java 682 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
package com.roshka.proyectofinal.entity;

public class PostulanteLenguaje {

    private int idPostulante,idLenguaje,id;

    public PostulanteLenguaje() {
    }

    public PostulanteLenguaje(int idPostulante) {
        this.idPostulante = idPostulante;
        this.idLenguaje = idPostulante;

    }
    public int getId(){
        return id;
    }
    public int getIdPostulante(){
        return idPostulante;
    }
    public void setIdPostulante(int idPostulante) {
        this.idPostulante = idPostulante;
    }

    public int getIdLenguaje() {
        return idLenguaje;
    }

    public void setIdLenguaje(int idLenguaje) {
        this.idLenguaje = idLenguaje;
    }
}