43 lines
1.3 KiB
C#
43 lines
1.3 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("Prendario.CuentasInternas")]
|
|
public partial class CuentasInternas
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public CuentasInternas()
|
|
{
|
|
DataFaseII = new HashSet<DataFaseII>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCuenta { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public bool? CuentaNueva { get; set; }
|
|
|
|
public int? IdTipoCuenta { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string Ncuenta { get; set; }
|
|
|
|
public int? IdMoneda { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual TipoCuenta TipoCuenta { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DataFaseII> DataFaseII { get; set; }
|
|
}
|
|
}
|