diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 17:17:46 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 17:17:46 +0000 |
| commit | 0440c722a221b8068bbf388c1c0c51f0faff0451 (patch) | |
| tree | 169cbf90c50ff7961db82ecb606c50c2a45a1688 /Gestor.Model/Gestor.Model.Domain.Seguros/ProspeccaoToPrint.cs | |
| parent | 225aa1499e37faf9d38257caabbadc68d78b427e (diff) | |
| download | gestor-master.tar.gz gestor-master.zip | |
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; } +} |