summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Common/TipoPagamento.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Gestor.Model.Common/TipoPagamento.cs')
-rw-r--r--Gestor.Model/Gestor.Model.Common/TipoPagamento.cs61
1 files changed, 61 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Common/TipoPagamento.cs b/Gestor.Model/Gestor.Model.Common/TipoPagamento.cs
new file mode 100644
index 0000000..47480d1
--- /dev/null
+++ b/Gestor.Model/Gestor.Model.Common/TipoPagamento.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 TipoPagamento
+{
+ [OldValue("0")]
+ [Description("NENHUM")]
+ Nenhum = 0,
+ [OldValue("15")]
+ [Description("BOLETO BANCÁRIO")]
+ Boleto = 15,
+ [OldValue("2")]
+ [Description("CAIXA")]
+ Caixa = 2,
+ [OldValue("14")]
+ [Description("CARNÊ")]
+ Carne = 14,
+ [OldValue("3")]
+ [Description("CARTÃO DE CRÉDITO")]
+ Cartao = 3,
+ [OldValue("4")]
+ [Description("CHEQUE")]
+ Cheque = 4,
+ [OldValue("5")]
+ [Description("CRÉDITO EM CONTA")]
+ Credito = 5,
+ [OldValue("6")]
+ [Description("DÉBITO AUTOMÁTICO")]
+ DebitoAuto = 6,
+ [OldValue("7")]
+ [Description("DÉBITO EM CONTA")]
+ DebitoConta = 7,
+ [OldValue("8")]
+ [Description("DEPÓSITO")]
+ Deposito = 8,
+ [OldValue("9")]
+ [Description("DINHEIRO")]
+ Dinheiro = 9,
+ [OldValue("13")]
+ [Description("REEMBOLSO")]
+ Reembolso = 13,
+ [OldValue("10")]
+ [Description("SAQUE")]
+ Saque = 10,
+ [OldValue("11")]
+ [Description("TRANSFERÊNCIA")]
+ Transferencia = 11,
+ [OldValue("12")]
+ [Description("OUTROS")]
+ Outros = 12,
+ [OldValue("18")]
+ [Description("PIX")]
+ Pix = 18,
+ [OldValue("19")]
+ [Description("VOUCHER")]
+ Voucher = 19
+}