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
128
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
}
}
|