-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClientes.java
More file actions
80 lines (64 loc) · 1.64 KB
/
Copy pathClientes.java
File metadata and controls
80 lines (64 loc) · 1.64 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Models;
/**
*
* @author AlexJPZ
*/
public class Clientes {
private int IdCliente;
private String ID;
private String Nombre;
private String Apellido;
private String Direccion;
private String Telefono;
public Clientes() {
}
// public Clientes(int IdCliente, String ID, String Nombre, String Apellido, String Direccion, String Telefono) {
// this.IdCliente = IdCliente;
// this.ID = ID;
// this.Nombre = Nombre;
// this.Apellido = Apellido;
// this.Direccion = Direccion;
// this.Telefono = Telefono;
// }
public int getIdCliente() {
return IdCliente;
}
public void setIdCliente(int IdCliente) {
this.IdCliente = IdCliente;
}
public String getID() {
return ID;
}
public void setID(String ID) {
this.ID = ID;
}
public String getNombre() {
return Nombre;
}
public void setNombre(String Nombre) {
this.Nombre = Nombre;
}
public String getApellido() {
return Apellido;
}
public void setApellido(String Apellido) {
this.Apellido = Apellido;
}
public String getDireccion() {
return Direccion;
}
public void setDireccion(String Direccion) {
this.Direccion = Direccion;
}
public String getTelefono() {
return Telefono;
}
public void setTelefono(String Telefono) {
this.Telefono = Telefono;
}
}