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/Gestor.Model.Common/FormaPagamento.cs | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 Gestor.Model/Gestor.Model.Common/FormaPagamento.cs (limited to 'Gestor.Model/Gestor.Model.Common/FormaPagamento.cs') diff --git a/Gestor.Model/Gestor.Model.Common/FormaPagamento.cs b/Gestor.Model/Gestor.Model.Common/FormaPagamento.cs new file mode 100644 index 0000000..f234337 --- /dev/null +++ b/Gestor.Model/Gestor.Model.Common/FormaPagamento.cs @@ -0,0 +1,61 @@ +using System.ComponentModel; +using Gestor.Model.Attributes; +using Gestor.Model.Converter; + +namespace Gestor.Model.Common; + +[TypeConverter(typeof(EnumDescriptionTypeConverter))] +public enum FormaPagamento +{ + [OldValue("0")] + [Description("TODAS EM DÉBITO")] + Debito, + [OldValue("1")] + [Description("TODAS EM CARTÃO")] + Cartao, + [OldValue("2")] + [Description("TODAS EM BOLETO")] + Boleto, + [OldValue("3")] + [Description("1ª BOLETO E DEMAIS DÉBITO")] + PrimeiraBoleto, + [OldValue("4")] + [Description("NENHUM")] + Nenhum, + [OldValue("5")] + [Description("FATURA")] + Fatura, + [OldValue("6")] + [Description("1ª DÉBITO E DEMAIS BOLETO")] + PrimeiraDebito, + [OldValue("7")] + [Description("CRÉDITO EM CONTA")] + Credito, + [OldValue("8")] + [Description("CARNÊ")] + Carne, + [OldValue("9")] + [Description("1º BOLETO E DEMAIS NO CARNÊ")] + PrimeiraBoletoDemaisCarne, + [OldValue("10")] + [Description("FICHA + CARNÊ")] + FichaMaisCarne, + [OldValue("11")] + [Description("DÓLAR")] + Dolar, + [OldValue("12")] + [Description("À VISTA")] + AVista, + [OldValue("13")] + [Description("1ª BOLETO E DEMAIS C. CRÉDITO")] + PrimeiraBoletoDemaisCredito, + [OldValue("14")] + [Description("1ª CARTÃO E DEMAIS BOLETO")] + PrimeiraCartaoDemaisBoleto, + [OldValue("15")] + [Description("PIX")] + Pix, + [OldValue("16")] + [Description("TODAS EM CARTÃO SEGURADORA")] + CartaoSeguradora +} -- cgit v1.2.3