-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUsuario.cs
executable file
·100 lines (86 loc) · 2.32 KB
/
Usuario.cs
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace QueryWebApp
{
public class Usuario
{
private int idUsuario;
private string rut;
private string password;
private string nombre;
private string apellido;
private int edad;
private string sexo;
private int telefono;
private string email;
private string tipoUsuario;
public Usuario()
{
}
public Usuario(int idUsuario, string rut, string password, string nombre, string apellido, int edad, string sexo, int telefono, string email, string tipoUsuario)
{
this.idUsuario = idUsuario;
this.rut = rut;
this.password = password;
this.nombre = nombre;
this.apellido = apellido;
this.edad = edad;
this.sexo = sexo;
this.telefono = telefono;
this.email = email;
this.tipoUsuario = tipoUsuario;
}
public int _idUsuario
{
get { return idUsuario; }
set { idUsuario = value; }
}
public string _rut
{
get { return rut; }
set { rut = value; }
}
public string _password
{
get { return password; }
set { password = value; }
}
public string _nombre
{
get { return nombre; }
set { nombre = value; }
}
public string _apellido
{
get { return apellido; }
set { apellido = value; }
}
public int _edad
{
get { return edad; }
set { edad = value; }
}
public string _sexo
{
get { return sexo; }
set { sexo = value; }
}
public int _telefono
{
get { return telefono; }
set { telefono = value; }
}
public string _email
{
get { return email; }
set { email = value; }
}
public string _tipoUsuario
{
get { return tipoUsuario; }
set { tipoUsuario = value; }
}
}
}