30 lines
665 B
C#
30 lines
665 B
C#
using System;
|
|
|
|
namespace AyAEL.CIP
|
|
{
|
|
public class CierreEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public string DocumentoPreInversion { get; set; }
|
|
|
|
public string DocumentoFinanciamiento { get; set; }
|
|
|
|
public string DocumentoInversion { get; set; }
|
|
|
|
public DateTime? FechaInicio { get; set; }
|
|
|
|
public DateTime? FechaEntrega { get; set; }
|
|
|
|
public DateTime? FechaFinalizacion { get; set; }
|
|
|
|
public DateTime? FechaCapitalizacion { get; set; }
|
|
|
|
public decimal MontoCapitalizacion { get; set; }
|
|
|
|
public int Proyecto { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|