arreglado diagrama de clases
This commit is contained in:
@@ -9,8 +9,6 @@ namespace Entidades
|
||||
public string Apellido { get; set; }
|
||||
public string Direccion { get; set; }
|
||||
public string Correo { get; set; }
|
||||
|
||||
[Browsable(false)]
|
||||
public bool Habilitado { get; set; }
|
||||
|
||||
public string NombreCompleto
|
||||
@@ -18,10 +16,5 @@ namespace Entidades
|
||||
get { return $"{Nombre} {Apellido}"; }
|
||||
}
|
||||
|
||||
// Sobreescribir ToString() para mostrar el nombre completo
|
||||
public override string ToString()
|
||||
{
|
||||
return NombreCompleto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user