blob: f5c12ebfb70e1a5f2f6ff59d6d8abafdb72099fa (
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
|
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum BaseRepasse
{
[Description("VIGÊNCIA DO DOCUMENTO")]
[OldValue("1")]
Vigencia = 1,
[Description("CADASTRO DO DOCUMENTO")]
[OldValue("2")]
Cadastro = 2,
[Description("VENCIMENTO DA PARCELA")]
[OldValue("3")]
Vencimento = 3,
[Description("EMISSÃO DA APÓLICE")]
[OldValue("4")]
Emissao = 4,
[Description("TRANSMISSÃO DA PROPOSTA")]
[OldValue("5")]
Transmissao = 5
}
}
|