TFS_ANTIGUO/AYA.FROPI/AyAEL/CIP/CierreEL.cs

31 lines
665 B
C#
Raw Normal View History

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
}
}