示例#1
0
 public Proyecto()
 {
     this.jefeProyecto = new JefeProyecto();
     //this.listaDetalleEntrega = new List<DetalleEntrega>();
     //this.listaOperario = new List<Operario>();
     //this.listaSolicitudRetiro = new List<SolicitudRetiro>();
     this.eru = new ERU();
 }
示例#2
0
 public AlineamientoObjetivo(bool estadoProyecto,
                             TipoEstadoMeta estadometa, string formaMedir, DateTime fechaPlazo)
 {
     this.estadoMeta     = estadometa;
     this.estadoProyecto = estadoProyecto;
     this.formaMedir     = formaMedir;
     this.fechaPlazo     = fechaPlazo;
     this.objetivo       = new Objetivo();
     this.eru            = new ERU();
 }
示例#3
0
 public Estimacion(int idEstimacion, string descripcion, DateTime fechaEstimacion,
                   double total)
 {
     this.eru                  = new ERU();
     this.evaluacion           = new Evaluacion();
     this.experto              = new Experto();
     this.evaluacion           = new Evaluacion();
     this.solicitudCambio      = new SolicitudCambio();
     this.listaLineaEstimacion = new List <LineaEstimacion>();
     this.idEstimacion         = idEstimacion;
     this.descripcion          = descripcion;
     this.fechaEstimacion      = fechaEstimacion;
     this.total                = total;
 }
示例#4
0
 public AlineamientoObjetivo()
 {
     this.objetivo = new Objetivo();
     this.eru      = new ERU();
 }
示例#5
0
 public Requerimiento()
 {
     this.eru = new ERU();
     //this.estimacion = new Estimacion();
 }