31 lines
849 B
C#
31 lines
849 B
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("Desembolso.DesembolsoFacturas")]
|
|
public partial class DesembolsoFacturas
|
|
{
|
|
[Key]
|
|
public int IdDesembolsoFacturas { get; set; }
|
|
|
|
public int IdSolicitud { get; set; }
|
|
|
|
public long NumeroFactura { get; set; }
|
|
|
|
public decimal Monto { get; set; }
|
|
|
|
public int IdTipoMoneda { get; set; }
|
|
|
|
public decimal? DescuentoMonto { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual DesembolsoDatosGenerales DesembolsoDatosGenerales { get; set; }
|
|
}
|
|
}
|