73 lines
1.9 KiB
C#
73 lines
1.9 KiB
C#
namespace ULA.Davivienda.PrendarioModel.Prendario
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Catalogos.ParamCalculoSeguro")]
|
|
public partial class ParamCalculoSeguro
|
|
{
|
|
[Key]
|
|
public int IdParamCalculoSeguro { get; set; }
|
|
|
|
public int? IdAseguradora { get; set; }
|
|
|
|
public int? IdTipoVehiculo { get; set; }
|
|
|
|
public int? IdMoneda { get; set; }
|
|
|
|
public int? IdRubroSeguro { get; set; }
|
|
|
|
[StringLength(5)]
|
|
public string IdFuenteIngreso { get; set; }
|
|
|
|
public bool? EsColaborador { get; set; }
|
|
|
|
public double? PorcSeguro { get; set; }
|
|
|
|
public double? PorcValActualVeh { get; set; }
|
|
|
|
public double? MontoValActualVeh { get; set; }
|
|
|
|
public double? PorcDesempleoA { get; set; }
|
|
|
|
public double? PorcDesempleoB { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
public int? ModoCalculo { get; set; }
|
|
|
|
[StringLength(5)]
|
|
public string IdSubRubroSeguro { get; set; }
|
|
|
|
public int? IdCarroceriaVehiculo { get; set; }
|
|
|
|
public double? PorcDescuento { get; set; }
|
|
|
|
public double? PorcIVA { get; set; }
|
|
|
|
public double? PorcRecFraccionado { get; set; }
|
|
|
|
public double? PorcSeguro2 { get; set; }
|
|
|
|
public double? PorcSeguro3 { get; set; }
|
|
|
|
public double? UG { get; set; }
|
|
|
|
public virtual Aseguradora Aseguradora { get; set; }
|
|
|
|
public virtual CarroceriaVehiculo CarroceriaVehiculo { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual RubroSeguro RubroSeguro { get; set; }
|
|
|
|
public virtual SubRubroSeguro SubRubroSeguro { get; set; }
|
|
|
|
public virtual TipoFuenteIngreso TipoFuenteIngreso { get; set; }
|
|
|
|
public virtual TipoVehiculo TipoVehiculo { get; set; }
|
|
}
|
|
}
|