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 } }