using Gestor.Model.Attributes; using Gestor.Model.Converter; using System; using System.ComponentModel; namespace Gestor.Model.Common { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum AtividadeEmpresa { [Description("OUTROS")] [OldValue("1")] Outro, [Description("ACADEMIA")] [OldValue("2")] Academia, [Description("BAR")] [OldValue("3")] Bar, [Description("BELEZA E ESTÉTICA")] [OldValue("4")] BelezaEstetica, [Description("CLÍNICA VETERINÁRIA")] [OldValue("5")] ClinicaVeterinaria, [Description("CONCESSIONÁRIA")] [OldValue("6")] Concessionaria, [Description("CONSULTÓRIO MÉDICO")] [OldValue("7")] ConsultorioMedico, [Description("CONSULTÓRIO ODONTOLÓGICO")] [OldValue("8")] ConsultorioOdontologico, [Description("ESCOLA DE INFORMÁTICA")] [OldValue("9")] EscolaInformatica, [Description("ESCOLA DE IDIOMAS")] [OldValue("10")] EscolaIdiomas, [Description("ESCOLA TÉCNICA")] [OldValue("11")] EscolaTecnica, [Description("ESCOLA OU COLÉGIO")] [OldValue("12")] EscolaDemais, [Description("ESCRITÓRIO")] [OldValue("13")] Escritorio, [Description("FARMÁCIA")] [OldValue("14")] Farmacia, [Description("FLORICULTURA")] [OldValue("15")] Floricultura, [Description("HOTEL")] [OldValue("16")] Hotel, [Description("IGREJA")] [OldValue("17")] Igreja, [Description("LAVANDERIA")] [OldValue("18")] Lavanderia, [Description("LIVRARIA")] [OldValue("19")] Livraria, [Description("LOJA DE CALÇADOS")] [OldValue("20")] LojaCalcado, [Description("LOJA DE ROUPAS")] [OldValue("21")] LojaRoupa, [Description("SUPERMERCADO")] [OldValue("22")] Mercado, [Description("MOTEL")] [OldValue("23")] Motel, [Description("ÓTICA")] [OldValue("24")] Otica, [Description("PADARIA")] [OldValue("25")] Padaria, [Description("PAPELARIA")] [OldValue("26")] Papelaria, [Description("PERFUMARIA")] [OldValue("27")] Perfumaria, [Description("PET SHOP")] [OldValue("28")] PetShop, [Description("POSTO DE COMBUSTÍVEL")] [OldValue("29")] PostoCombustivel, [Description("POUSADA")] [OldValue("30")] Pousada, [Description("RESTAURANTE")] [OldValue("31")] Restaurante, [Description("LOJA DE MÓVEIS")] [OldValue("32")] LojaMoveis, [Description("LOJA DE MATERIAL DE CONSTRUÇÃO")] [OldValue("33")] LojaMaterialConstrucao, [Description("LOJA DE ELETRODOMÉSTICOS")] [OldValue("34")] LojaEletrodomesticos, [Description("LOJA DE COLCHÕES")] [OldValue("35")] LojaColchoes, [Description("BUFFET")] [OldValue("36")] Buffet, [Description("AÇOUGUE")] [OldValue("37")] Acougue, [Description("TRANSPORTADORA")] [OldValue("38")] Transportadora, [Description("COPIADORA")] [OldValue("39")] Copiadora } }