blob: 6f83f7f948858b2b1f7b29ae7d64f9aa496e029c (
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 TipoEndosso
{
[Description("COM MOVIMENTO DE PRÊMIO")]
[OldValue("0")]
ComMovimento,
[Description("SEM MOVIMENTO DE PRÊMIO")]
[OldValue("1")]
SemMovimento,
[Description("CANCELAMENTO DA APÓLICE")]
[OldValue("2")]
Cancelamento,
[Description("REABILITAÇÃO DA APÓLICE")]
[OldValue("3")]
Reabilitacao,
[Description("PRORROGAÇÃO DE VIGÊNCIA")]
[OldValue("4")]
Prorrogacao
}
}
|