59 lines
1.3 KiB
C#
59 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class vf_polizassg_estadisticas
|
|
{
|
|
public int idPoliza { get; set; }
|
|
|
|
public string? NumeroPoliza { get; set; }
|
|
|
|
public int NumeroSuplemento { get; set; }
|
|
|
|
public DateOnly FechaEfecto { get; set; }
|
|
|
|
public DateOnly? FechaBaja { get; set; }
|
|
|
|
public string? Compania { get; set; }
|
|
|
|
public string? CodigoCia { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla ramos
|
|
/// </summary>
|
|
public int idRamo { get; set; }
|
|
|
|
public string? Ramo { get; set; }
|
|
|
|
public string? FamiliaRamo { get; set; }
|
|
|
|
public string? Tomador { get; set; }
|
|
|
|
public string? CIFTomador { get; set; }
|
|
|
|
public string? Telefono1Tomador { get; set; }
|
|
|
|
public string? Telefono2Tomador { get; set; }
|
|
|
|
public string? EmailTomador { get; set; }
|
|
|
|
public string? CausaBaja { get; set; }
|
|
|
|
public bool? CausaBajaOculta { get; set; }
|
|
|
|
public string? TipoPago { get; set; }
|
|
|
|
public string? CodigoAgente { get; set; }
|
|
|
|
public string? Agente { get; set; }
|
|
|
|
public string Oficina { get; set; } = null!;
|
|
|
|
public string? SubAgente { get; set; }
|
|
|
|
public string? CodigoSubAgente { get; set; }
|
|
}
|