31 lines
663 B
C#
31 lines
663 B
C#
using System;
|
|
|
|
namespace AyAEL.CVP
|
|
{
|
|
public class CicloVidaEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public decimal Porcentaje { get; set; }
|
|
|
|
public decimal Monto { get; set; }
|
|
|
|
public DateTime FechaEtapaAnterior { get; set; }
|
|
|
|
public DateTime FechaAprobacion { get; set; }
|
|
|
|
public int EtapaActual { get; set; }
|
|
|
|
public int EtapaAnterior { get; set; }
|
|
|
|
public int FaseEjecucion { get; set; }
|
|
|
|
public int EstudioFactibilidad { get; set; }
|
|
|
|
public int EjecutaProyecto { get; set; }
|
|
|
|
public int Proyecto { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|