blob: 7b4731b4f4bd78eef18a54dc769ebb88fe374532 (
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 Ocupacao
{
[Description("NÃO POSSUI OCUPAÇÃO")]
[OldValue("0")]
NaoPossuiOcupacao,
[Description("ASSALARIADO(A)")]
[OldValue("1")]
Assalariado,
[Description("ESTUDANTE")]
[OldValue("2")]
Estudante,
[Description("ASSALARIADO(A) E ESTUDANTE")]
[OldValue("3")]
AsssalariadoEstudante,
[Description("APOSENTADO(A)")]
[OldValue("4")]
Aposentado,
[Description("OUTROS")]
[OldValue("5")]
Outros
}
}
|