53 lines
1.7 KiB
C#
53 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdAsegasa.Informes
|
|
{
|
|
public class CartillaSeguroGenerales
|
|
{
|
|
public string Rso { get; set; }
|
|
public string Cif { get; set; }
|
|
public List<PolizaGeneral> PolizasEntidad { get; set; }
|
|
public int NumDePolizas { get; set; }
|
|
public double TotalPagados { get; set; }
|
|
public double TotalAnulados { get; set; }
|
|
public double TotalCia { get; set; }
|
|
public double TotalPendiente { get; set; }
|
|
public string Cia { get; set; }
|
|
}
|
|
|
|
public class SiniestroGeneral
|
|
{
|
|
public int IdSiniestro { get; set; }
|
|
public string RefCompania { get; set; }
|
|
public string DescripcionSiniestro { get; set; }
|
|
public string DanoCliente { get; set; }
|
|
public string DanoContrario { get; set; }
|
|
public string Culpabilidad { get; set; }
|
|
public string FechaSiniestro { get; set; }
|
|
}
|
|
|
|
public class PolizaGeneral
|
|
{
|
|
public string NumeroPoliza { get; set; }
|
|
public string Ramo { get; set; }
|
|
public string Compañia { get; set; }
|
|
public List<ReciboPoliza> RecibosPolizas { get; set; }
|
|
public List<SiniestroGeneral> SiniestrosEntidad { get; set; }
|
|
}
|
|
|
|
public class ReciboPoliza
|
|
{
|
|
public DateTime FechaEfecto { get; set; }
|
|
public DateTime? FechaVencimiento { get; set; }
|
|
public double Importe { get; set; }
|
|
public string Matricula { get; set; }
|
|
public string Duracion { get; set; }
|
|
public string TipoPago { get; set; }
|
|
public string FechaPago { get; set; }
|
|
public string CausaBaja { get; set; }
|
|
public string FechaBaja { get; set; }
|
|
public string BienesAsegurados { get; set; }
|
|
}
|
|
}
|