44 lines
1.4 KiB
C#
44 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("Catalogos.CuentaAgencia")]
|
|
public partial class CuentaAgencia
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public CuentaAgencia()
|
|
{
|
|
FormaDesembolso = new HashSet<FormaDesembolso>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCuentaAgencia { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string NumCuenta { get; set; }
|
|
|
|
[StringLength(3)]
|
|
public string TipoCuenta { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public int? IdMoneda { get; set; }
|
|
|
|
public int? IdTipoFuncionalidadCuenta { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual TipoFuncionalidadCuenta TipoFuncionalidadCuenta { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<FormaDesembolso> FormaDesembolso { get; set; }
|
|
}
|
|
}
|