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