26 lines
797 B
C#
26 lines
797 B
C#
using System.Collections.Generic;
|
|
|
|
namespace bdAsegasa.Informes
|
|
{
|
|
public class InformesAgrarios
|
|
{
|
|
public List<LinInformesAgrarios> DatosLineas { get; set; }
|
|
}
|
|
|
|
public class LinInformesAgrarios
|
|
{
|
|
public string CodLinea { get; set; }
|
|
public string GruLinea { get; set; }
|
|
public string DesLinea { get; set; }
|
|
public string Compania { get; set; }
|
|
public int NumPolizas { get; set; }
|
|
public double PrimaNetaCalculo { get; set; }
|
|
public double ComAsegasa { get; set; }
|
|
public double ComAgentes { get; set; }
|
|
public double ComAsegasaPrev { get; set; }
|
|
public double ComAgentesPrev { get; set; }
|
|
public double TotComCob { get; set; }
|
|
public double TotComPrev { get; set; }
|
|
}
|
|
}
|