Primera versión estable compatible con linux de WSAsegasa
This commit is contained in:
58
bdAsegasa/db/vf_polizassg_estadisticas.cs
Normal file
58
bdAsegasa/db/vf_polizassg_estadisticas.cs
Normal file
@@ -0,0 +1,58 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user