diff options
Diffstat (limited to 'Gestor.Model/Model.Common/Parentesco.cs')
| -rw-r--r-- | Gestor.Model/Model.Common/Parentesco.cs | 99 |
1 files changed, 0 insertions, 99 deletions
diff --git a/Gestor.Model/Model.Common/Parentesco.cs b/Gestor.Model/Model.Common/Parentesco.cs deleted file mode 100644 index a8c9047..0000000 --- a/Gestor.Model/Model.Common/Parentesco.cs +++ /dev/null @@ -1,99 +0,0 @@ -using Gestor.Model.Attributes;
-using Gestor.Model.Converter;
-using System;
-using System.ComponentModel;
-
-namespace Gestor.Model.Common
-{
- [TypeConverter(typeof(EnumDescriptionTypeConverter))]
- public enum Parentesco
- {
- [Description("PAI")]
- [OldValue("0")]
- Pai,
- [Description("FILHO")]
- [OldValue("1")]
- Filho,
- [Description("MÃE")]
- [OldValue("2")]
- Mae,
- [Description("IRMÃOS")]
- [OldValue("3")]
- Irmaos,
- [Description("AVÓS")]
- [OldValue("4")]
- Avos,
- [Description("TIOS")]
- [OldValue("5")]
- Tios,
- [Description("SOBRINHOS")]
- [OldValue("6")]
- Sobrinhos,
- [Description("BISAVÓS")]
- [OldValue("7")]
- Bisavos,
- [Description("PRIMOS")]
- [OldValue("8")]
- Primos,
- [Description("SOGRA")]
- [OldValue("9")]
- Sogra,
- [Description("SOGRO")]
- [OldValue("10")]
- Sogro,
- [Description("GENRO")]
- [OldValue("11")]
- Genro,
- [Description("NORA")]
- [OldValue("12")]
- Nora,
- [Description("CUNHADO")]
- [OldValue("13")]
- Cunhado,
- [Description("CUNHADA")]
- [OldValue("14")]
- Cunhada,
- [Description("CONCUNHADO")]
- [OldValue("15")]
- Concunhado,
- [Description("CONCUNHADA")]
- [OldValue("16")]
- Concunhada,
- [Description("PADRASTO")]
- [OldValue("17")]
- Padrasto,
- [Description("MADRASTA")]
- [OldValue("18")]
- Madrasta,
- [Description("ENTEADO")]
- [OldValue("19")]
- Enteado,
- [Description("ENTEADA")]
- [OldValue("20")]
- Enteada,
- [Description("CÔNJUGE")]
- [OldValue("21")]
- Conjuge,
- [Description("SÓCIO")]
- [OldValue("22")]
- Socio,
- [Description("FUNCIONÁRIO")]
- [OldValue("23")]
- Funcionário,
- [Description("EX-CÔNJUGE")]
- [OldValue("24")]
- Exconjuge,
- [Description("AMIGO(A)")]
- [OldValue("25")]
- Amigo,
- [Description("NETO")]
- [OldValue("26")]
- Neto,
- [Description("PROPRIETÁRIO DA EMPRESA")]
- [OldValue("27")]
- Proprietario,
- [Description("SÍNDICO")]
- [OldValue("28")]
- Sindico
- }
-}
\ No newline at end of file |