blob: 3453227eafd30a33447988b800a4da5dd7516619 (
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
|
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum SubTipo
{
[Description("PARCELA NORMAL")]
[OldValue("1")]
ParcelaNormal = 1,
[Description("RESTITUIÇÃO")]
[OldValue("2")]
Restituicao = 2,
[Description("CRÉDITO")]
[OldValue("3")]
Credito = 3,
[Description("CUSTO DE APÓLICE")]
[OldValue("4")]
Custo = 4,
[Description("CARTÃO DE CRÉDITO")]
[OldValue("5")]
Cartao = 5,
[Description("ACERTO DE COMISSÃO")]
[OldValue("6")]
Acerto = 6
}
}
|