diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
| commit | 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch) | |
| tree | e1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Codemerx/Gestor.Model/Model.Common/AtividadeEmpresa.cs | |
| parent | 674ca83ba9243a9e95a7568c797668dab6aee26a (diff) | |
| download | gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip | |
chore: location
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Common/AtividadeEmpresa.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.Common/AtividadeEmpresa.cs | 129 |
1 files changed, 129 insertions, 0 deletions
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 |