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