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