Пример #1
0
 /// <summary>
 /// default constructor
 /// </summary>
 public Zona()
 {
     m_idzona      = 0;
     m_nombre      = String.Empty;
     m_idlocalidad = new Localidad();
     m_responsable = String.Empty;
 }
Пример #2
0
 /// <summary>
 /// required (not null) fields only constructor
 /// </summary>
 public Barrio(
     string nombre,
     Localidad idlocalidad)
     : this()
 {
     m_nombre      = nombre;
     m_idlocalidad = idlocalidad;
 }
Пример #3
0
 /// <summary>
 /// required (not null) fields only constructor
 /// </summary>
 public Zona(
     string nombre,
     Localidad idlocalidad,
     string responsable)
     : this()
 {
     m_nombre      = nombre;
     m_idlocalidad = idlocalidad;
     m_responsable = responsable;
 }
Пример #4
0
 /// <summary>
 /// default constructor
 /// </summary>
 public Barrio()
 {
     m_idbarrio    = 0;
     m_nombre      = String.Empty;
     m_idlocalidad = new Localidad();
 }