Advertisement
Fhernd

Propietario.cs

Jul 18th, 2014
605
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. class Propietario
  2. {
  3.     private string cedula;
  4.  
  5.     public string Cedula
  6.     {
  7.         get { return cedula; }
  8.         set { cedula = value; }
  9.     }
  10.  
  11.     private string nombreCompleto;
  12.  
  13.     public string NombreCompleto
  14.     {
  15.         get { return nombreCompleto; }
  16.         set { nombreCompleto = value; }
  17.     }
  18.  
  19.     private string telefono;
  20.  
  21.     public string Telefono
  22.     {
  23.         get { return telefono; }
  24.         set { telefono = value; }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement