public TSector(TMunicipio municipio) { this.Municipio = municipio; this.Id = 0; this.Nombre = string.Empty; this.Codigo = string.Empty; }
public TSector(string codigo) { this.Codigo = codigo; this.Id = 0; this.Nombre = string.Empty; this.Codigo = string.Empty; this.Municipio = new TMunicipio(); }
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; }
public TSector(string nombre, TMunicipio municipio, string codigo) { this.Id = 0; this.Nombre = nombre; this.Municipio = municipio; this.Codigo = codigo; }
public TSector(int id) { this.Id = id; this.Nombre = string.Empty; this.Codigo = string.Empty; this.Municipio = new TMunicipio(); }