TFS_ANTIGUO/AYA.FROPI/AyAEL/AGP/ProyectoEL.cs

63 lines
1.7 KiB
C#
Raw Normal View History

using System;
namespace AyAEL.AGP
{
public class ProyectoEL : AyAEL
{
#region Atributos
public string NumeroBPIP { get; set; }
public string NumeroAccionEstrategica { get; set; }
public string MetaAccionEstrategica { get; set; }
public string BeneficiarioDirecto { get; set; }
public string BeneficiarioIndirecto { get; set; }
public string MetaInstitucional { get; set; }
public string MonedaTipoCambio { get; set; }
public string ObjetivoGeneral { get; set; }
public string CodigoAcceso { get; set; }
public bool VistoBuenoOficina { get; set; }
public bool VistoBuenoSubGerencia { get; set; }
public bool VistoBuenoPlanificacion { get; set; }
public bool PUblicarWeb { get; set; }
public Nullable<int> Dependencia { get; set; }
public Nullable<int> Sector { get; set; }
public Nullable<int> AreaTematica { get; set; }
public Nullable<int> AreaInfluencia { get; set; }
public Nullable<int> Categoria { get; set; }
public Nullable<int> Provincia { get; set; }
public string Canton { get; set; }
public string Distrito { get; set; }
public Nullable<int> Region { get; set; }
public Nullable<int> Prioridad { get; set; }
public string Patrocinador { get; set; }
public string Lider { get; set; }
public decimal? TotalEstimado { get; set; }
public int? Estado { get; set; }
public int? Complejidad { get; set; }
public int? Programa { get; set; }
#endregion
}
}