예제 #1
0
 public SolicitudRetiro(int idSolicitud, string descripcion,
                        DateTime fechaSolicitud, TipoEstadoSolicitud estado)
 {
     this.descripcion    = descripcion;
     this.estado         = estado;
     this.fechaSolicitud = fechaSolicitud;
     this.proyecto       = new Proyecto();
     this.jefeProyecto   = new JefeProyecto();
     this.operario       = new Operario();
 }
예제 #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();
 }