55 lines
1.8 KiB
C#
55 lines
1.8 KiB
C#
using System;
|
|
|
|
namespace bdAsegasa.db
|
|
{
|
|
public partial class detallesamortizacionrecibos
|
|
{
|
|
public string MesFecha
|
|
{
|
|
get
|
|
{
|
|
string mesStr = this.Mes.ToString();
|
|
return mesStr.Substring(0, 4) + "/" + mesStr.Substring(4, 2);
|
|
}
|
|
}
|
|
}
|
|
|
|
public class ve_detallesamortizacionrecibos
|
|
{
|
|
public int idDetalle { get; set; }
|
|
public int idAmortizacion { get; set; }
|
|
public int? idRecibo { get; set; }
|
|
public DateOnly FechaInicioAmortizacion { get; set; }
|
|
public DateOnly FechaFinAmortizacion { get; set; }
|
|
public double PorcentajeAnual { get; set; }
|
|
public DateOnly? FechaBaja { get; set; }
|
|
public int? idMotivoBaja { get; set; }
|
|
public int idEmpresa { get; set; }
|
|
public string NumeroCuenta { get; set; }
|
|
public string Observaciones { get; set; }
|
|
public DateOnly? FechaAlta { get; set; }
|
|
public string CodigoRecibo { get; set; }
|
|
public DateOnly FechaEfecto { get; set; }
|
|
public double TotalRecibo { get; set; }
|
|
public string Ramo { get; set; }
|
|
public string Compañía { get; set; }
|
|
public string Tomador { get; set; }
|
|
public string CIFTomador { get; set; }
|
|
public string CausaBaja { get; set; }
|
|
public string Empresa { get; set; }
|
|
public double ValorAmortizado { get; set; }
|
|
public double ValorAcumulado { get; set; }
|
|
public double ValorResidual { get; set; }
|
|
public int Mes { get; set; }
|
|
public DateTime? FechaAplicacion { get; set; }
|
|
public string MesFecha
|
|
{
|
|
get
|
|
{
|
|
string mesStr = this.Mes.ToString();
|
|
return mesStr.Substring(0, 4) + "/" + mesStr.Substring(4, 2);
|
|
}
|
|
}
|
|
}
|
|
}
|