Beispiel #1
0
            public TSector(TMunicipio municipio) {
                this.Municipio = municipio;
                this.Id = 0;
                this.Nombre = string.Empty;
                this.Codigo = string.Empty;

            }
Beispiel #2
0
 public TSector(string codigo) { 
     this.Codigo = codigo;
     this.Id = 0;
     this.Nombre = string.Empty;
     this.Codigo = string.Empty;
     this.Municipio = new TMunicipio();
 }
Beispiel #3
0
            public TDireccion(int id, string referencia, TMunicipio municipio){
                this.Id = id;
                this.Referencia = referencia;

                this.Sector = new TSector();
                //this.Municipio = municipio;
                this.Sector.Municipio = municipio;
            }
Beispiel #4
0
 public TSector(string nombre, TMunicipio municipio, string codigo) {
     this.Id = 0;
     this.Nombre = nombre; 
     this.Municipio = municipio; 
     this.Codigo = codigo; 
 }
Beispiel #5
0
 public TSector(int id) {
     this.Id = id;
     this.Nombre = string.Empty;
     this.Codigo = string.Empty;
     this.Municipio = new TMunicipio();
 }