Esempio n. 1
0
 public UniversalPropertyIdentifier(IsoCountryCode country, string subCountry, string property, SubPropertyTypeCode subPropertyType, string subProperty)
     : this(country, subCountry, property)
 {
     Country      = country;
     SubCountry   = subCountry;
     Property     = property;
     PropertyType = subPropertyType;
     SubProperty  = subProperty;
 }
        public static string AsText(this SubPropertyTypeCode propertyType)
        {
            switch (propertyType)
            {
            case SubPropertyTypeCode.B: return("Building");

            case SubPropertyTypeCode.S: return("Cooperative/Apartment");

            case SubPropertyTypeCode.R: return("Real Property");

            case SubPropertyTypeCode.T: return("Temporary Designation");

            default: return(SubPropertyTypeCode.N.ToString());
            }
        }