36 lines
1.4 KiB
C#
36 lines
1.4 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("Cotizacion.ProgramaCrediticio")]
|
|
public partial class ProgramaCrediticio
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public ProgramaCrediticio()
|
|
{
|
|
Cotizacion = new HashSet<Cotizacion>();
|
|
ProgramaCrediticioCondiciones = new HashSet<ProgramaCrediticioCondiciones>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdProgramaCrediticio { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
public virtual 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<ProgramaCrediticioCondiciones> ProgramaCrediticioCondiciones { get; set; }
|
|
}
|
|
}
|