Last active
October 5, 2015 19:36
-
-
Save matipan/dee2639c1d2fa7f6de61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package unlp.info.empresa; | |
public class Empleado { | |
private long nroLegajo; | |
private double sueldo; | |
public long getNroLegajo(){ | |
return this.nroLegajo; | |
} | |
public void setNroLegajo(long nroLegajo){ | |
this.nroLegajo = nroLegajo; | |
} | |
public double getSueldo(){ | |
return this.sueldo; | |
} | |
public void setSueldo(double sueldo){ | |
this.sueldo = sueldo; | |
} | |
} |
lsartori94
commented
Oct 5, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment