コード例 #1
0
 public SolicitudCambio()
 {
     //this.estimacion = new Estimacion();
     this.requerimiento = new Requerimiento();
     this.kam           = new KAM();
     this.cliente       = new Cliente();
 }
コード例 #2
0
 public ERU()
 {
     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();
 }
コード例 #3
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();
 }
コード例 #4
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();
 }