Beispiel #1
0
 public ERU(int idERU, string descripcion, bool estado, DateTime fechaSolicitud)
 {
     this.idERU                    = idERU;
     this.descripcion              = descripcion;
     this.estado                   = estado;
     this.fechaSolicitud           = fechaSolicitud;
     this.kam                      = new KAM();
     this.estimacion               = new Estimacion();
     this.evaluacion               = new Evaluacion();
     this.proyecto                 = new Proyecto();
     this.listaAlienamientoObjtivo = new List <AlineamientoObjetivo>();
     this.requerimiento            = new Requerimiento();
 }
Beispiel #2
0
 public SolicitudCambio(int idSolicitud, string descripcion, DateTime fechaSolicitud,
                        TipoEstadoSolicitud estado, bool seAgregaRequerimiento)
 {
     this.idSolicitud           = idSolicitud;
     this.descripcion           = descripcion;
     this.fechaSolicitud        = fechaSolicitud;
     this.estado                = estado;
     this.seAgregaRequerimiento = seAgregaRequerimiento;
     this.estimacion            = new Estimacion();
     this.requerimiento         = new Requerimiento();
     this.kam     = new KAM();
     this.cliente = new Cliente();
 }
Beispiel #3
0
 public LineaEstimacion(int idLinea, TipoCargo rol, float tiempoEstimadoPlaneacion,
                        float tiempoEstimadoAnalisis, float tiempoEstimadoDesarrollo,
                        float tiempoEstimadoPruebas, float tiempoEstimadoPreparacion,
                        float tiempoEstimadoPostProduccion, float subTotal)
 {
     this.idLinea = idLinea;
     this.rol     = rol;
     this.tiempoEstimadoAnalisis       = tiempoEstimadoAnalisis;
     this.tiempoEstimadoDesarrollo     = tiempoEstimadoDesarrollo;
     this.tiempoEstimadoPlaneacion     = tiempoEstimadoPlaneacion;
     this.tiempoEstimadoPostProduccion = tiempoEstimadoPostProduccion;
     this.tiempoEstimadoPreparacion    = tiempoEstimadoPreparacion;
     this.tiempoEstimadoPruebas        = tiempoEstimadoPruebas;
     this.estimacion = new Estimacion();
 }
Beispiel #4
0
 public LineaEstimacion()
 {
     this.estimacion = new Estimacion();
 }