Created
June 16, 2013 19:45
-
-
Save Fhernd/5793159 to your computer and use it in GitHub Desktop.
Clase Propietario.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Propietario | |
{ | |
private string cedula; | |
public string Cedula | |
{ | |
get { return cedula; } | |
set { cedula = value; } | |
} | |
private string nombreCompleto; | |
public string NombreCompleto | |
{ | |
get { return nombreCompleto; } | |
set { nombreCompleto = value; } | |
} | |
private string telefono; | |
public string Telefono | |
{ | |
get { return telefono; } | |
set { telefono = value; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment