From 0440c722a221b8068bbf388c1c0c51f0faff0451 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 14:17:46 -0300 Subject: some dlls --- .../Gestor.Model.Common/AtividadeEmpresa.cs | 127 +++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 Gestor.Model/Gestor.Model.Common/AtividadeEmpresa.cs (limited to 'Gestor.Model/Gestor.Model.Common/AtividadeEmpresa.cs') diff --git a/Gestor.Model/Gestor.Model.Common/AtividadeEmpresa.cs b/Gestor.Model/Gestor.Model.Common/AtividadeEmpresa.cs new file mode 100644 index 0000000..93bf894 --- /dev/null +++ b/Gestor.Model/Gestor.Model.Common/AtividadeEmpresa.cs @@ -0,0 +1,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 +} -- cgit v1.2.3