blob: 74e4bae3ff6c8df936dd4f988f3aa751bb6cd8ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum TipoTelefone
{
[Description("RESIDENCIAL")]
[OldValue("1")]
[Tipo("1")]
Residencial = 1,
[Description("COMERCIAL")]
[OldValue("2")]
[Tipo("1")]
Comercial = 2,
[Description("CELULAR")]
[OldValue("3")]
[Tipo("1")]
Celular = 3,
[Description("RADIO")]
[OldValue("4")]
[Tipo("1")]
Radio = 4,
[Description("RECADO")]
[OldValue("5")]
[Tipo("1")]
Recado = 5,
[Description("FAX")]
[OldValue("6")]
[Tipo("1")]
Fax = 6,
[Description("OUTROS")]
[OldValue("7")]
[Tipo("1")]
Outros = 7,
[Description("INTERNACIONAL")]
[OldValue("8")]
[Tipo("0")]
Internacional = 8,
[Description("WHATSAPP")]
[OldValue("9")]
[Tipo("2")]
Whatsapp = 9,
[Description("0800")]
[OldValue("10")]
[Tipo("0")]
Gratuita = 10,
[Description("0300")]
[OldValue("11")]
[Tipo("0")]
TarifaUnica = 11
}
}
|