42 lines
1.9 KiB
C#
42 lines
1.9 KiB
C#
namespace ULA.Cathay.CreditoModel.Credito
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Catalogos.FormasPagos")]
|
|
public partial class FormasPagos
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public FormasPagos()
|
|
{
|
|
DesembolsoDatosGenerales = new HashSet<DesembolsoDatosGenerales>();
|
|
FormaliacionInformacionAdicional = new HashSet<FormaliacionInformacionAdicional>();
|
|
OfertaFacilidades = new HashSet<OfertaFacilidades>();
|
|
OfertaOperaciones = new HashSet<OfertaOperaciones>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdFormaPago { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DesembolsoDatosGenerales> DesembolsoDatosGenerales { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<FormaliacionInformacionAdicional> FormaliacionInformacionAdicional { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<OfertaFacilidades> OfertaFacilidades { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<OfertaOperaciones> OfertaOperaciones { get; set; }
|
|
}
|
|
}
|