Advertisement
Montoya-Romina-Anahi

TP_2_Punto_6_ClassOrden

May 22nd, 2020
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1.  
  2. public class Orden {
  3.  
  4. int numero_Afiliado,codigo_Estudio;
  5. double descuento;
  6. String matricula,fecha,estado;
  7.  
  8. public Orden() {}
  9.  
  10. public Orden(int numeroAfiliado,int codigoEstudio,String matricula,String fecha,String estado,double descuento) {
  11.  
  12. this.numero_Afiliado = numeroAfiliado;
  13. this.codigo_Estudio = codigoEstudio;
  14. this.matricula = matricula;
  15. this.fecha = fecha;
  16. this.estado = estado;
  17. this.descuento = descuento;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement