summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Common/TipoPagamento.cs
blob: 110188c0e80686191f7e59a91dd6c91a348f0b0c (plain)
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
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
using System;
using System.ComponentModel;

namespace Gestor.Model.Common
{
	[TypeConverter(typeof(EnumDescriptionTypeConverter))]
	public enum TipoPagamento
	{
		[Description("NENHUM")]
		[OldValue("0")]
		Nenhum = 0,
		[Description("CAIXA")]
		[OldValue("2")]
		Caixa = 2,
		[Description("CARTÃO DE CRÉDITO")]
		[OldValue("3")]
		Cartao = 3,
		[Description("CHEQUE")]
		[OldValue("4")]
		Cheque = 4,
		[Description("CRÉDITO EM CONTA")]
		[OldValue("5")]
		Credito = 5,
		[Description("DÉBITO AUTOMÁTICO")]
		[OldValue("6")]
		DebitoAuto = 6,
		[Description("DÉBITO EM CONTA")]
		[OldValue("7")]
		DebitoConta = 7,
		[Description("DEPÓSITO")]
		[OldValue("8")]
		Deposito = 8,
		[Description("DINHEIRO")]
		[OldValue("9")]
		Dinheiro = 9,
		[Description("SAQUE")]
		[OldValue("10")]
		Saque = 10,
		[Description("TRANSFERÊNCIA")]
		[OldValue("11")]
		Transferencia = 11,
		[Description("OUTROS")]
		[OldValue("12")]
		Outros = 12,
		[Description("REEMBOLSO")]
		[OldValue("13")]
		Reembolso = 13,
		[Description("CARNÊ")]
		[OldValue("14")]
		Carne = 14,
		[Description("BOLETO BANCÁRIO")]
		[OldValue("15")]
		Boleto = 15,
		[Description("PIX")]
		[OldValue("18")]
		Pix = 18,
		[Description("VOUCHER")]
		[OldValue("19")]
		Voucher = 19
	}
}