diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
| commit | 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch) | |
| tree | e1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Gestor.Model/Model.Common/FormaPagamento.cs | |
| parent | 674ca83ba9243a9e95a7568c797668dab6aee26a (diff) | |
| download | gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip | |
chore: location
Diffstat (limited to 'Gestor.Model/Model.Common/FormaPagamento.cs')
| -rw-r--r-- | Gestor.Model/Model.Common/FormaPagamento.cs | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/Gestor.Model/Model.Common/FormaPagamento.cs b/Gestor.Model/Model.Common/FormaPagamento.cs deleted file mode 100644 index 9c814e9..0000000 --- a/Gestor.Model/Model.Common/FormaPagamento.cs +++ /dev/null @@ -1,63 +0,0 @@ -using Gestor.Model.Attributes;
-using Gestor.Model.Converter;
-using System;
-using System.ComponentModel;
-
-namespace Gestor.Model.Common
-{
- [TypeConverter(typeof(EnumDescriptionTypeConverter))]
- public enum FormaPagamento
- {
- [Description("TODAS EM DÉBITO")]
- [OldValue("0")]
- Debito,
- [Description("TODAS EM CARTÃO")]
- [OldValue("1")]
- Cartao,
- [Description("TODAS EM BOLETO")]
- [OldValue("2")]
- Boleto,
- [Description("1ª BOLETO E DEMAIS DÉBITO")]
- [OldValue("3")]
- PrimeiraBoleto,
- [Description("NENHUM")]
- [OldValue("4")]
- Nenhum,
- [Description("FATURA")]
- [OldValue("5")]
- Fatura,
- [Description("1ª DÉBITO E DEMAIS BOLETO")]
- [OldValue("6")]
- PrimeiraDebito,
- [Description("CRÉDITO EM CONTA")]
- [OldValue("7")]
- Credito,
- [Description("CARNÊ")]
- [OldValue("8")]
- Carne,
- [Description("1º BOLETO E DEMAIS NO CARNÊ")]
- [OldValue("9")]
- PrimeiraBoletoDemaisCarne,
- [Description("FICHA + CARNÊ")]
- [OldValue("10")]
- FichaMaisCarne,
- [Description("DÓLAR")]
- [OldValue("11")]
- Dolar,
- [Description("À VISTA")]
- [OldValue("12")]
- AVista,
- [Description("1ª BOLETO E DEMAIS C. CRÉDITO")]
- [OldValue("13")]
- PrimeiraBoletoDemaisCredito,
- [Description("1ª CARTÃO E DEMAIS BOLETO")]
- [OldValue("14")]
- PrimeiraCartaoDemaisBoleto,
- [Description("PIX")]
- [OldValue("15")]
- Pix,
- [Description("TODAS EM CARTÃO SEGURADORA")]
- [OldValue("16")]
- CartaoSeguradora
- }
-}
\ No newline at end of file |