68 lines
2.9 KiB
C#
68 lines
2.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.Moneda")]
|
|
public partial class Moneda
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public Moneda()
|
|
{
|
|
CuentaAgencia = new HashSet<CuentaAgencia>();
|
|
IngresoRequerido = new HashSet<IngresoRequerido>();
|
|
Cotizacion = new HashSet<Cotizacion>();
|
|
CuentasInternas = new HashSet<CuentasInternas>();
|
|
ParamCalculoSeguro = new HashSet<ParamCalculoSeguro>();
|
|
ProgramaCrediticioCondiciones = new HashSet<ProgramaCrediticioCondiciones>();
|
|
TipoFormaDesembolso = new HashSet<TipoFormaDesembolso>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdMoneda { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public int? IdPais { get; set; }
|
|
|
|
[StringLength(5)]
|
|
public string Simbolo { get; set; }
|
|
|
|
[StringLength(5)]
|
|
public string Nemonico { get; set; }
|
|
|
|
public bool? DefaultLocal { get; set; }
|
|
|
|
public bool? DefaultExtranjera { get; set; }
|
|
|
|
public bool? DefaultCredito { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<CuentaAgencia> CuentaAgencia { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<IngresoRequerido> IngresoRequerido { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<Cotizacion> Cotizacion { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<CuentasInternas> CuentasInternas { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<ParamCalculoSeguro> ParamCalculoSeguro { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<ProgramaCrediticioCondiciones> ProgramaCrediticioCondiciones { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<TipoFormaDesembolso> TipoFormaDesembolso { get; set; }
|
|
}
|
|
}
|