diff options
Diffstat (limited to 'Gestor.Model/Gestor.Model.Domain.Seguros/ProspeccaoToPrint.cs')
| -rw-r--r-- | Gestor.Model/Gestor.Model.Domain.Seguros/ProspeccaoToPrint.cs | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Domain.Seguros/ProspeccaoToPrint.cs b/Gestor.Model/Gestor.Model.Domain.Seguros/ProspeccaoToPrint.cs new file mode 100644 index 0000000..5adc054 --- /dev/null +++ b/Gestor.Model/Gestor.Model.Domain.Seguros/ProspeccaoToPrint.cs @@ -0,0 +1,81 @@ +using System; +using System.ComponentModel; +using Gestor.Model.Attributes; +using Gestor.Model.Common; + +namespace Gestor.Model.Domain.Seguros; + +public class ProspeccaoToPrint +{ + private string _nome; + + private string _item; + + [Description("CLIENTE")] + public string Nome + { + get + { + return _nome?.ToUpper(); + } + set + { + _nome = value; + } + } + + [Description("DOCUMENTO")] + public string Documento { get; set; } + + [Tipo("DATA?")] + [Description("NASCIMENTO")] + public DateTime? Nascimento { get; set; } + + [Description("DDD")] + public string Prefixo1 { get; set; } + + [Description("TELEFONE")] + public string Telefone1 { get; set; } + + [Description("DDD")] + public string Prefixo2 { get; set; } + + [Description("TELEFONE")] + public string Telefone2 { get; set; } + + [Description("E-MAIL")] + public string Email { get; set; } + + [Tipo("DATA?")] + [Description("VIGĂNCIA FINAL")] + public DateTime? VigenciaFinal { get; set; } + + [Description("ITEM")] + public string Item + { + get + { + return _item?.ToUpper(); + } + set + { + _item = value; + } + } + + [Description("VENDEDOR")] + public string Vendedor { get; set; } + + [Tipo("ENUM?")] + [Description("STATUS")] + public StatusProspeccao? Status { get; set; } + + [Description("STATUS PERSONALIZADO")] + public string StatusPersonalizadotoPrint { get; set; } + + [Description("TIPO")] + public string Tipo { get; set; } + + [Description("VALOR")] + public decimal Valor { get; set; } +} |