diff options
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Common/Ocupacao.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.Common/Ocupacao.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Common/Ocupacao.cs b/Codemerx/Gestor.Model/Model.Common/Ocupacao.cs new file mode 100644 index 0000000..7b4731b --- /dev/null +++ b/Codemerx/Gestor.Model/Model.Common/Ocupacao.cs @@ -0,0 +1,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
+ }
+}
\ No newline at end of file |