arreglado diagrama de clases

This commit is contained in:
2024-08-11 20:06:55 -03:00
parent b19399b64c
commit d11016fe50
4 changed files with 9 additions and 211 deletions

View File

@@ -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;
}
}
}