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