TFS_ANTIGUO/AYA.FROPI/AyAEL/CVP/CicloVidaEL.cs
Administrador 50700fd78b Solución FROPI
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C491
2019-05-27 14:46:35 +00:00

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