public SolicitudCambio() { //this.estimacion = new Estimacion(); this.requerimiento = new Requerimiento(); this.kam = new KAM(); this.cliente = new Cliente(); }
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(); }
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(); }
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(); }