-
Notifications
You must be signed in to change notification settings - Fork 1
/
Huesped.cs
118 lines (106 loc) · 3.57 KB
/
Huesped.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
using Entidades.Excepciones;
using Microsoft.IdentityModel.Tokens;
namespace Entidades.Modelos
{
/// <summary>
/// Clase que representa un <see cref="Huesped"/> del hotel
/// </summary>
public class Huesped
{
private DateTime _fechaDeNacimiento;
private string _nombre;
private string _apellido;
#region Propiedades
public int Id { get; set; } // PK
public string Nombre
{
get => _nombre;
set
{
if (ValidaCampoVacio(value))
{
_nombre = value;
}
}
}
public string Apellido
{
get => _apellido;
set
{
if (ValidaCampoVacio(value))
{
_apellido = value;
}
}
}
public DateTime FechaDeNacimiento
{
get => _fechaDeNacimiento;
set => SetFechaDeNacimiento(value);
}
public string Telefono { get; set; }
public int IdReserva { get; set; } // FK
#endregion
#region Metodos
/// <summary>
/// Valida que el <see cref="Huesped"/> sea mayor de edad
/// </summary>
/// <param name="fechaDeNacimiento">La fecha a validar</param>
/// <exception cref="FechaInvalidaException"></exception>
private void SetFechaDeNacimiento(DateTime fechaDeNacimiento)
{
if (!EsMayorDeEdad(fechaDeNacimiento))
{
throw new FechaInvalidaException("Debe ser mayor de edad para hacer una reserva");
}
_fechaDeNacimiento = fechaDeNacimiento;
}
/// <summary>
/// Devuelve true si el <see cref="Huesped"/> es mayor de edad
/// </summary>
public static bool EsMayorDeEdad(DateTime fechaDeNacimiento)
{
DateTime fechaActual = DateTime.Now;
int edad = fechaActual.Year - fechaDeNacimiento.Year;
if (fechaDeNacimiento.Month > fechaActual.Month && fechaDeNacimiento.Day > fechaActual.Day)
{
edad--;
}
return edad >= 18;
}
/// <summary>
/// Valida que el campo no este vacio o sea nulo
/// </summary>
/// <returns>True si el campo no se esta vacio o es nulo</returns>
/// <exception cref="DatoInvalidoException"></exception>
public static bool ValidaCampoVacio(string campo)
{
if (campo.IsNullOrEmpty())
{
throw new DatoInvalidoException("Dato requerido");
}
return true;
}
#endregion
#region Sobrecargas
/// <summary>
/// Devuelve un string con los datos del huesped
/// </summary>
public override string ToString()
{
return $"{Apellido}, {Nombre} ({Id})\nNumero de reserva: {IdReserva}";
}
/// <summary>
/// Un <see cref="Huesped"/> sera igual a una <see cref="Reserva"/> si el Id de la reserva
/// coincide con el numero de reserva del huesped
/// </summary>
public static bool operator ==(Huesped h, Reserva r) => h.IdReserva == r.Id;
/// <summary>
/// Un <see cref="Huesped"/> sera distinto a una <see cref="Reserva"/> si el Id de la reserva
/// es distinta al numero de reserva del huesped
/// </summary>
public static bool operator !=(Huesped h, Reserva r) => !(h == r);
#endregion
}
}