From 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:38:18 -0300 Subject: chore: location --- .../Gestor.Model/Model.Common/AtividadeEmpresa.cs | 129 +++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 Codemerx/Gestor.Model/Model.Common/AtividadeEmpresa.cs (limited to 'Codemerx/Gestor.Model/Model.Common/AtividadeEmpresa.cs') diff --git a/Codemerx/Gestor.Model/Model.Common/AtividadeEmpresa.cs b/Codemerx/Gestor.Model/Model.Common/AtividadeEmpresa.cs new file mode 100644 index 0000000..19c49c6 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.Common/AtividadeEmpresa.cs @@ -0,0 +1,129 @@ +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 + } +} \ No newline at end of file -- cgit v1.2.3