public Boolean mModificarCurso(clConexion conexion, clEntidadCursoLibre pEntidadCursoLibre)
 {
     strSentencia = "update tbCursos set estado = '" + pEntidadCursoLibre.Estado +
                    "', lugar = '" + pEntidadCursoLibre.Lugar +
                    "', cupo ='" + pEntidadCursoLibre.Cupo +
                    "', programa= (SELECT * FROM OPENROWSET(BULK N'" + pEntidadCursoLibre.Programa + "', SINGLE_BLOB) as Pdf) where sigla='" + pEntidadCursoLibre.IdCursoLibre + "'";
     return(conexion.mEjecutar(strSentencia, conexion));
 }
 public SqlDataReader mConsultaPorID(clConexion conexion, clEntidadCursoLibre pEntidadCursoLibre)
 {
     strSentencia = "select idProfesor, nombre, descripcion, estado, lugar, cupo, programa from tbCursosLibr where idCursosLibres='" + pEntidadCursoLibre.IdCursoLibre + "'";
     return(conexion.mSeleccionar(strSentencia, conexion));
 }
 public Boolean mInsertarCursoLibre(clConexion conexion, clEntidadCursoLibre pEntidadCursoLibre)
 {
     strSentencia = "insert into tbCursosLibr(idProfesor, nombre, descripcion, estado, lugar, cupo, programa) values('" + pEntidadCursoLibre.IdProfesor + "', '" + pEntidadCursoLibre.Nombre + "', '" + pEntidadCursoLibre.Descripcion + "', '" + pEntidadCursoLibre.Estado + "', '" + pEntidadCursoLibre.Lugar + "', '" + pEntidadCursoLibre.Cupo + "',(SELECT * FROM OPENROWSET(BULK N'" + pEntidadCursoLibre.Programa + "', SINGLE_BLOB) as Pdf)  ";
     return(conexion.mEjecutar(strSentencia, conexion));
 }