1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
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
}
|