Lenguaje.java 595 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
package com.roshka.proyectofinal.entity;

public class Lenguaje {
    private int id;
    private String nombre_lenguaje;

    public Lenguaje() {

    }

11 12 13 14 15
    public Lenguaje(int id, String nombre_lenguaje) {
        this.id = id;
        this.nombre_lenguaje = nombre_lenguaje;
    }

16 17 18 19 20 21 22 23
    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

24 25 26 27 28 29 30 31
    public String getNombre_lenguaje() {
        return nombre_lenguaje;
    }

    public void setNombre_lenguaje(String nombre_lenguaje) {
        this.nombre_lenguaje = nombre_lenguaje;
    }
}