public DataSet ProcessarQuery(string instrucaoSQL, String token) { DataSet dsResultado = null; try { if (string.IsNullOrWhiteSpace(token) || (!string.IsNullOrWhiteSpace(token) && !token.Trim().Equals("sebrae14"))) { throw new AcademicoException("Acesso negado"); } if (string.IsNullOrWhiteSpace(instrucaoSQL)) { throw new AcademicoException("Informe a instrução SQL"); } dsResultado = new BMGenerico().ProcessarQuery(instrucaoSQL); return(dsResultado); } catch (AcademicoException ex) { throw ex; } catch (Exception ex) { throw ex; } }
/// <summary> /// Método Construtor da classe /// </summary> public ManterGenerico() : base() { bmGenerico = new BMGenerico(); }